Skip to content

Latest commit

 

History

History
37 lines (24 loc) · 662 Bytes

RELEASING.md

File metadata and controls

37 lines (24 loc) · 662 Bytes

Releasing

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

  2. Commit changes.

    $ git commit -am "Prepare version X.Y.X"
  3. Tag the release.

    $ git tag -am "Version X.Y.Z" X.Y.Z
  4. Push the tag.

    $ git push --tags
  5. Update the version in gradle.properties to the next SNAPSHOT version.

  6. Commit changes.

    $ git commit -am "Prepare next development version"
  7. Push changes.

    $ git push

    This will trigger a GitHub Action to publish the library to Maven Central.