- Change the version in
gradle.properties
to a non-SNAPSHOT version. - Update the
CHANGELOG.md
for the impending release.- Change the
Unreleased
header to the release version. - Add a link URL to ensure the header link works.
- ADd a new
Unreleased
section to the top.
- Change the
- Update the
README.md
for the impending release.- Change the "Installation" section to reflect the new release version.
git commit -am "Prepare for release X.Y.Z."
(where X.Y.Z is the new version)git tag -a X.Y.Z -m "Version X.Y.Z"
(where X.Y.Z is the new version)- Update the
gradle.properties
to the next SNAPSHOT version. git commit -am "Prepare next development version."
git push && git push --tags
to trigger CI to deploy the release.