- Ensure all unit tests are passed and project compiles.
- Ensure
VERSION_NAME
ingradle.properties
is set to the version you want to release. - Update
README.md
with the version about to be released. - Commit:
git commit -am "Prepare version X.Y.X"
- Tag:
git tag -a X.Y.Z -m "Version X.Y.Z"
- Update
VERSION_NAME
ingradle.properties
to the next development version. For example, if you just tagged version 1.0.0 you would set this value to 1.0.1 - Do NOT append "-SNAPSHOT" to this value, it will be added automatically. - Commit:
git commit -am "Prepare next development version."
- Push:
git push && git push --tags