- Checkout
origin/main. - Update the
CHANGELOG.mdfile with the changes of this release (the format is based on Keep a Changelog.- Copy the template for the next unreleased version at the top.
- Rename the previous unreleased version to the new version.
- Update the version in
gradle.propertiesand remove the-SNAPSHOTsuffix. - Commit the changes, create a tag and push it:
git commit -am "Releasing 0.4.4" git tag 0.4.4 git push && git push --tags - Run the
releasegithub action to publish the release to maven. - Create a new release on GitHub with the same tag and write release notes.
- Update the version in
gradle.propertiesand add the-SNAPSHOTsuffix. - Commit the change and push it:
git commit -am "Prepare next development version." git push