- Change the version in
gradle.properties
to a non-SNAPSHOT version. - Update the
CHANGELOG.md
for the impending release - Update the
README.md
with the new version. git checkout -b release/X.Y.0
git tag -a X.Y.Z -m "Version X.Y.Z"
(where X.Y.Z is the new version)./gradlew clean publishRelease
git push --tags
- Update the
gradle.properties
to the next SNAPSHOT version. git commit -am "Prepare next development version"
git push -u origin release/X.Y.0
- Visit Sonatype Nexus and promote the artifact.
- Merge
release/X.Y.0
Pull-Request