Skip to content

Latest commit

 

History

History
13 lines (11 loc) · 610 Bytes

File metadata and controls

13 lines (11 loc) · 610 Bytes

Releasing

This repository is set up for autorelease. The process involves pushing a new git tag.

  1. git checkout master && git pull; all the following commands should be performed while on the master branch.
  2. Update the CHANGELOG.md for the impending release.
  3. git commit -am "Prepare for release X.Y.Z." (where X.Y.Z is the new version)
  4. git tag -a X.Y.Z -m "Version X.Y.Z" (where X.Y.Z is the new version)
  5. git push && git push --tags
  6. Update the gradle.properties to the next SNAPSHOT version.
  7. git commit -am "Prepare next development version."
  8. git push