Skip to content

Latest commit

 

History

History
15 lines (14 loc) · 761 Bytes

RELEASING.md

File metadata and controls

15 lines (14 loc) · 761 Bytes

Releasing

  1. Create a local release branch from main: git checkout -b vX.Y.Z
  2. Change the version in config/version.properties to a non-SNAPSHOT version.
  3. Update the CHANGELOG.md for the impending release.
  4. Update the README.md with the new version.
  5. git commit -am "Prepare for release X.Y.Z." (where X.Y.Z is the new version)
  6. git push origin, open pull-request
  7. Merge pull-request
  8. git checkout main && git pull origin
  9. git tag -a X.Y.Z -m "Version X.Y.Z" && git push --tags (where X.Y.Z is the new version)
  10. Trigger publish workflow for the new tag in GitHub Actions
  11. Update the config/version.properties to the next SNAPSHOT version.
  12. git commit -am "Prepare next development version."
  13. git push origin