Skip to content
This repository has been archived by the owner on Mar 6, 2024. It is now read-only.

Latest commit

 

History

History
10 lines (9 loc) · 405 Bytes

RELEASING.md

File metadata and controls

10 lines (9 loc) · 405 Bytes

Releasing

  1. Change the version in gradle.properties to a non-SNAPSHOT version
  2. Update the CHANGELOG.md
  3. git commit -am "Prepare for release X.Y.Z"
  4. git tag -a vX.Y.Z -m "Version X.Y.Z"
  5. git push && git push --tags to trigger CI to deploy the release
  6. Update gradle.properties to next SNAPSHOT version
  7. git commit -am "Prepare for development"
  8. git push && git push --tags