Skip to content

Latest commit

 

History

History
14 lines (13 loc) · 731 Bytes

RELEASING.md

File metadata and controls

14 lines (13 loc) · 731 Bytes

Releasing

  1. Create a local release branch from main: git checkout -b vX.Y.Z
  2. Change the version in generator/build.gradle 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 tag -a X.Y.Z -m "Version X.Y.Z" (where X.Y.Z is the new version)
  7. git push origin, open pull-request
  8. Merge pull-request and trigger publish workflow in GitHub Actions
  9. git checkout main && git pull origin
  10. Update the generator/build.gradle to the next SNAPSHOT version.
  11. git commit -am "Prepare next development version."
  12. git push && git push --tags