You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
There're no particular rules about when to release grape-active_model_serializers. Release bug fixes frequently, features not so frequently and breaking API changes rarely.
4
+
5
+
### Release
6
+
7
+
Run tests, check that all tests succeed locally.
8
+
9
+
```
10
+
bundle install
11
+
rake
12
+
```
13
+
14
+
Check that the last build succeeded in [Travis CI](https://travis-ci.org/ruby-grape/grape-active_model_serializers) for all supported platforms.
15
+
16
+
Change "Next Release" in [CHANGELOG.md](CHANGELOG.md) to the new version.
17
+
18
+
```
19
+
### 0.7.2 (February 6, 2014)
20
+
```
21
+
22
+
Remove the line with "Your contribution here.", since there will be no more contributions to this release.
grape-active_model_serializers 0.7.2 built to pkg/grape-active_model_serializers-0.7.2.gem.
38
+
Tagged v0.7.2.
39
+
Pushed git commits and tags.
40
+
Pushed grape-active_model_serializers 0.7.2 to rubygems.org.
41
+
```
42
+
43
+
### Prepare for the Next Version
44
+
45
+
Modify [lib/grape-active_model_serializers/version.rb](lib/grape-active_model_serializers/version.rb), increment the third number (eg. change `0.7.2` to `0.7.3`).
46
+
47
+
48
+
```ruby
49
+
moduleGrape
50
+
moduleActiveModelSerializers
51
+
VERSION='0.7.3'.freeze
52
+
end
53
+
end
54
+
```
55
+
56
+
Add the next release to [CHANGELOG.md](CHANGELOG.md).
0 commit comments