Skip to content

Commit 5238a3d

Browse files
authored
Prepare release 0.9.0 (#349)
1 parent 51d898d commit 5238a3d

File tree

5 files changed

+12
-47
lines changed

5 files changed

+12
-47
lines changed

.rubocop.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@ AllCops:
44
Exclude:
55
- vendor/**/*
66
- example/**/*
7-
TargetRubyVersion: 2.7
8-
UseCache: true
97
NewCops: enable
8+
TargetRubyVersion: 3.0
9+
SuggestExtensions: false
1010

1111
# Layout stuff
1212
#

.travis.yml

Lines changed: 0 additions & 27 deletions
This file was deleted.

CHANGELOG.md

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,18 @@
44

55
* Your contribution here.
66

7-
* [#348](https://github.com/ruby-grape/grape-entity/pull/348): Updates danger - [@LeFnord](https://github.com/LeFnord).
8-
* [#346](https://github.com/ruby-grape/grape-entity/pull/346): Adds GH actions - [@LeFnord](https://github.com/LeFnord).
9-
107
#### Fixes
118

129
* Your contribution here.
1310

1411

12+
### 0.9.0 (2021-03-20)
13+
14+
#### Features
15+
16+
* [#346](https://github.com/ruby-grape/grape-entity/pull/346): Ruby 3 support - [@LeFnord](https://github.com/LeFnord).
17+
18+
1519
### 0.8.2 (2020-11-08)
1620

1721
#### Fixes

UPGRADING.md

Lines changed: 2 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,10 @@
11
# Upgrading Grape Entity
22

3-
### Upgrading to >= 0.8.2
4-
5-
In Ruby 3.0: the block handling will be changed
6-
[language-changes point 3, Proc](https://github.com/ruby/ruby/blob/v3_0_0_preview1/NEWS.md#language-changes).
7-
This:
8-
```ruby
9-
expose :that_method_without_args, &:method_without_args
10-
```
11-
will be deprecated.
12-
13-
Prefer to use this pattern for simple setting a value
14-
```ruby
15-
expose :method_without_args, as: :that_method_without_args
16-
```
173

184
### Upgrading to >= 0.8.2
195

6+
Official support for ruby < 2.5 removed, ruby 2.5 only in testing mode, but no support.
7+
208
In Ruby 3.0: the block handling will be changed
219
[language-changes point 3, Proc](https://github.com/ruby/ruby/blob/v3_0_0_preview1/NEWS.md#language-changes).
2210
This:

lib/grape_entity/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# frozen_string_literal: true
22

33
module GrapeEntity
4-
VERSION = '0.8.2'
4+
VERSION = '0.9.0'
55
end

0 commit comments

Comments
 (0)