Skip to content
This repository has been archived by the owner on Jan 17, 2023. It is now read-only.

Latest commit

 

History

History
12 lines (11 loc) · 595 Bytes

RELEASING.md

File metadata and controls

12 lines (11 loc) · 595 Bytes

Releasing

  1. Change the version in gradle.properties to a non-SNAPSHOT version.
  2. Update the README.md with the new version.
  3. git commit -am "Prepare for release X.Y.Z." (where X.Y.Z is the new version).
  4. git push
  5. Visit Sonatype Nexus and promote the artifact.
  6. git tag -a X.Y.Z -m "Version X.Y.Z" (where X.Y.Z is the new version)
  7. Update the gradle.properties to the next SNAPSHOT version.
  8. git commit -am "Prepare next development version."
  9. git push && git push --tags.
  10. Update the sample app to the release version and send a PR.