- Create a branch from
master
in the formatrelease/<version_to_be_released>
Eg.release/1.0.0
- Change the
Project.version
value inbuildSrc/src/main/kotlin/Dependencies.kt
to the version number to be released. - Update
CHANGELOG.md
entry with changes of the release. - Run
./gradlew clean build
to make sure project builds successfully. git commit -am "Make release for X.Y.Z."
(where X.Y.Z is the new version).git tag -a X.Y.Z -m "Version X.Y.Z"
git push && git push --tags
- Update
Project.version
value inbuildSrc/src/main/kotlin/Dependencies.kt
to the next SNAPSHOT version. git commit -am "Prepare next development version."
git push
This repository has been archived by the owner on Sep 14, 2022. It is now read-only.