- Change the version in
gradle.propertiesto a non-SNAPSHOT version. - Update the
CHANGELOG.mdfor the impending release - Update the
README.mdwith the new version. git checkout -b release/X.Y.0git tag -a X.Y.Z -m "Version X.Y.Z"(where X.Y.Z is the new version)./gradlew clean publishReleasegit push --tags- Update the
gradle.propertiesto 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.0Pull-Request