RELEASING.md in grape-0.12.0 vs RELEASING.md in grape-0.13.0

- old
+ new

@@ -10,16 +10,16 @@ ``` bundle install rake ``` -Check that the last build succeeded in [Travis CI](https://travis-ci.org/intridea/grape) for all supported platforms. +Check that the last build succeeded in [Travis CI](https://travis-ci.org/ruby-grape/grape) for all supported platforms. -Those with r/w permissions to the [master Intridea repository](https://github.com/intridea/grape) generally have large Grape-based projects. Point one to Grape HEAD and run all your API tests to catch any obvious regressions. +Those with r/w permissions to the [master Grape repository](https://github.com/ruby-grape/grape) generally have large Grape-based projects. Point one to Grape HEAD and run all your API tests to catch any obvious regressions. ``` -gem grape, github: 'intridea/grape' +gem grape, github: 'ruby-grape/grape' ``` Increment the version, modify [lib/grape/version.rb](lib/grape/version.rb). * Increment the third number if the release has bug fixes and/or very minor features, only (eg. change `0.5.1` to `0.5.2`). @@ -67,11 +67,11 @@ ``` ## Stable Release You're reading the documentation for the next release of Grape, which should be 0.6.1. -The current stable release is [0.6.0](https://github.com/intridea/grape/blob/v0.6.0/README.md). +The current stable release is [0.6.0](https://github.com/ruby-grape/grape/blob/v0.6.0/README.md). ``` Add the next release to [CHANGELOG.md](CHANGELOG.md). ``` @@ -79,14 +79,22 @@ ============ * Your contribution here. ``` +Bump the minor version in lib/grape/version.rb. + +```ruby +module Grape + VERSION = '0.6.1' +end +``` + Comit your changes. ``` -git add CHANGELOG.md README.md -git commit -m "Preparing for next release." +git add CHANGELOG.md README.md lib/grape/version.rb +git commit -m "Preparing for next development iteration, 0.6.1." git push origin master ``` ### Make an Announcement