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-swagger-rails. Release bug fixes frequenty, 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/TinkerDev/grape-swagger-rails) for all supported platforms.
15
+
16
+
Increment the version, modify [lib/grape-swagger-rails/version.rb](lib/grape-swagger-rails/version.rb).
17
+
18
+
* Increment the third number if the release has bug fixes and/or very minor features, only (eg. change `0.1.0` to `0.1.1`).
19
+
* Increment the second number if the release contains major features or breaking API changes (eg. change `0.1.0` to `0.2.0`).
20
+
21
+
Change "Next Release" in [CHANGELOG.md](CHANGELOG.md) to the new version.
22
+
23
+
```
24
+
### 0.1.1 (February 5, 2015)
25
+
```
26
+
27
+
Remove the line with "Your contribution here.", since there will be no more contributions to this release.
0 commit comments