- Change the version in the
gradle.properties
file to a non-SNAPSHOT verson. - Update the
CHANGELOG.md
for the impending release. - Update the
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.X -m "Version X.Y.Z"
(where X.Y.Z is the new version)- Run
git tag
to verify it.
- Run
git push && git push --tags
- This should be pushed to your fork.
- Create a PR with this commit and merge it.
- Confirm the new artifacts are present in https://repo1.maven.org/maven2/com/dropbox/kaiken/
- If the plugin fails to publish the release, you'll need to log into Sonatype and drop any repositories under 'Staging Repositories' and re-run the CI job to publish.
- Update the top level
gradle.properties
to the next SNAPSHOT version. git commit -am "Prepare next development version."
- Create a PR with this commit and merge it.
This repository has been archived by the owner on May 17, 2022. It is now read-only.