- Create a new branch for bumping the version.
- On the new branch, update the VERSION constant in
lib/order_as_specified/version.rb
. - Update the Changelog.
- Commit the change:
git add -A && git commit -m 'Bump to vX.X'
. - Make a PR.
- Merge the PR.
- Add a tag:
git tag -am "vX.X" vX.X
. - Push the tag:
git push --tags
- Push to rubygems:
gem build order_as_specified.gemspec && gem push *.gem && rm *.gem
- Celebrate!