RELEASING.md
VERSION_NAME in gradle.properties to the release (non-SNAPSHOT) version.CHANGELOG.md for the impending release.README.md with the new 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 "X.Y.Z" (where X.Y.Z is the new version)VERSION_NAME in gradle.properties to the next SNAPSHOT version.git commit -am "Prepare next development version"git push && git push --tagsThis will trigger a GitHub Action workflow which will upload the release artifacts to Maven Central.