Skip to content

Commit 3a3af34

Browse files
committed
Preparing for next developer iteration, 0.5.1.
1 parent a5f93bb commit 3a3af34

3 files changed

Lines changed: 7 additions & 8 deletions

File tree

CHANGELOG.md

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,30 +1,29 @@
1+
### 0.5.1 (Next)
2+
3+
* Your contribution here.
4+
15
### 0.5.0 (2025/09/25)
26

37
* [#31](https://github.com/ruby-grape/grape-roar/pull/31): Add support for Mongoid 7, 8 and 9 - [@dblock](https://github.com/dblock).
48
* [#23](https://github.com/ruby-grape/grape-roar/pull/23): Resolves pollution issue with invoking representers on singletons - [@mach-kernel](https://github.com/mach-kernel).
59
* [#28](https://github.com/ruby-grape/grape-roar/pull/28): Replaced Travis-CI with GHA - [@dblock](https://github.com/dblock).
610

7-
811
### 0.4.1 (2017/07/14)
912

1013
* [#22](https://github.com/ruby-grape/grape-roar/pull/22): Adds Grape::Roar::Extensions::Relations - [@mach-kernel](https://github.com/mach-kernel).
1114

12-
1315
### 0.4.0 (2017/02/18)
1416

1517
* [#21](https://github.com/ruby-grape/grape-roar/pull/21): Fixes serialization issue due to [representable](https://github.com/trailblazer/representable) API change, drop support for Ruby < `2.1.0` - [@mach-kernel](https://github.com/mach-kernel).
1618

17-
1819
### 0.3.0 (2014/12/31)
1920

2021
* Added support for Roar 1.0 - [@dblock](https://github.com/dblock).
2122

22-
2323
### 0.2.0 (2014/12/18)
2424

2525
* [#10](https://github.com/ruby-grape/grape-roar/pull/10): Support for Roar decorator - [@sdbondi](https://github.com/sdbondi).
2626

27-
2827
### 0.1.0 (2014/7/17)
2928

3029
* Initial public release, with support for Grape `present` - [@dblock](https://github.com/dblock).

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -200,7 +200,7 @@ end
200200
Although this example uses `Grape::Roar::Decorator`, you can also use a module as show in prior examples above. If doing so, you no longer have to mix in `Grape::Roar::Representer`.
201201

202202
##### Example Item
203-
```javascript
203+
```json
204204
{
205205
"_embedded": {
206206
"cart": {
@@ -223,7 +223,7 @@ Although this example uses `Grape::Roar::Decorator`, you can also use a module a
223223
```
224224

225225
##### Example Cart
226-
```javascript
226+
```json
227227
{
228228
"_links": {
229229
"self": {

lib/grape/roar/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@
22

33
module Grape
44
module Roar
5-
VERSION = '0.5.0'
5+
VERSION = '0.5.1'
66
end
77
end

0 commit comments

Comments
 (0)