Skip to content

Latest commit

 

History

History
30 lines (19 loc) · 596 Bytes

RELEASING.md

File metadata and controls

30 lines (19 loc) · 596 Bytes

Releasing

  1. Update the VERSION_NAME in gradle.properties to the release version.

  2. Update the CHANGELOG.md.

  3. Update the README.md so the "Download" section reflects the new release version and the snapshot section reflects the next "SNAPSHOT" version.

  4. Commit

    $ git commit -am "Prepare version X.Y.Z"
    
  5. Publish release on Github.

  6. Update the VERSION_NAME in gradle.properties to the next "SNAPSHOT" version.

  7. Commit

    $ git commit -am "Prepare next development version"
    
  8. Push!

    $ git push && git push --tags