Skip to content

Latest commit

 

History

History
14 lines (12 loc) · 648 Bytes

RELEASING.md

File metadata and controls

14 lines (12 loc) · 648 Bytes

RELEASING

  1. Update version in gradle.properties
  2. Update CHANGELOG.md
  3. Update README.md
  4. git checkout -b release
  5. git commit -am "Prepare for release X.Y.Z" (where X.Y.Z is the new version)
  6. ./gradlew publish -PRELEASE_SIGNING_ENABLED=true
  7. Visit Sonatype Nexus and promote the artifact.
  8. git tag -a X.Y.Z -m "Version X.Y.Z" (where X.Y.Z is the new version)
  9. git push --follow-tags
  10. Create PR release to main

If step 6 or 7 fails, drop the Sonatype repo, fix the problem, commit, and start again at step 5.