Skip to content

Commit 6003988

Browse files
committed
Preparing for next development iteration, 0.12.1.
1 parent ea2abcf commit 6003988

File tree

4 files changed

+18
-4
lines changed

4 files changed

+18
-4
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
Next Release
2+
============
3+
4+
* Your contribution here.
5+
16
0.12.0 (6/18/2015)
27
==================
38

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,8 +90,9 @@ content negotiation, versioning and much more.
9090

9191
## Stable Release
9292

93-
You're reading the documentation for the stable release of Grape 0.12.0.
93+
You're reading the documentation for the next release of Grape, which should be 0.12.1.
9494
Please read [UPGRADING](UPGRADING.md) when upgrading from a previous version.
95+
The current stable release is [0.12.0](https://github.com/intridea/grape/blob/v0.12.0/README.md).
9596

9697
## Project Resources
9798

RELEASING.md

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -81,11 +81,19 @@ Next Release
8181
* Your contribution here.
8282
```
8383

84+
Bump the minor version in lib/grape/version.rb.
85+
86+
```ruby
87+
module Grape
88+
VERSION = '0.6.1'
89+
end
90+
```
91+
8492
Comit your changes.
8593

8694
```
87-
git add CHANGELOG.md README.md
88-
git commit -m "Preparing for next release."
95+
git add CHANGELOG.md README.md lib/grape/version.rb
96+
git commit -m "Preparing for next development iteration, 0.6.1."
8997
git push origin master
9098
```
9199

lib/grape/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
module Grape
2-
VERSION = '0.12.0'
2+
VERSION = '0.12.1'
33
end

0 commit comments

Comments
 (0)