Skip to content

Latest commit

 

History

History
14 lines (12 loc) · 540 Bytes

RELEASING.md

File metadata and controls

14 lines (12 loc) · 540 Bytes

Releasing

These are steps for the maintainer to take to release a new version of this gem.

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