RELEASING.md
Update the VERSION_NAME in gradle.properties to the release version.
Update the CHANGELOG.md:
Unreleased header to the release version.Unreleased section to the top.Update the README.md:
Commit
$ git commit -am "Prepare version X.Y.X"
Manually release and upload artifacts
./gradlew clean publishTag
$ git tag -am "Version X.Y.Z" X.Y.Z
Update the VERSION_NAME in gradle.properties to the next "SNAPSHOT" version.
Commit
$ git commit -am "Prepare next development version"
Push!
$ git push && git push --tags
This will trigger a GitHub Action workflow which will create a GitHub release.