Skip to content

Latest commit

 

History

History
38 lines (24 loc) · 784 Bytes

RELEASING.md

File metadata and controls

38 lines (24 loc) · 784 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.

  4. Commit

    $ git commit -am "Prepare version X.Y.Z"
    
  5. Tag

    $ git tag -am "Version X.Y.Z" X.Y.Z
    
  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
    

    This will trigger a GitHub Action workflow which will create a GitHub release and upload the release artifacts to Sonatype Nexus.

  9. Visit Sonatype Nexus and promote the artifact.