Skip to content

Latest commit

 

History

History
26 lines (19 loc) · 715 Bytes

RELEASING.md

File metadata and controls

26 lines (19 loc) · 715 Bytes

Releasing

NB: Currently this gem is not published to RubyGems.

To make managing the version of this gem easier we are using the bump gem. Please review the following information to understand how to update the version of this gem as changes are made.

How to update the version

To update the version and create a tag use the following command:

bump <major/minor/patch/pre> --tag --tag-prefix v --commit-message "<your commit message>"
git push origin --tags

If you want to provide a multi line commit message you can use:

NB: You will have to add the tag manually.

bump <major/minor/patch/pre> --no-commit
git tag v<version>
git push origin --tags