- Change the version in
gradle.properties
to a non-SNAPSHOT version. - Update the
CHANGELOG.md
for the impending release. - Update the
README.md
with the new version. git commit -am "Prepare version X.Y.Z"
(where X.Y.Z is the new version)./gradlew clean publishMavenPublicationToMavenCentralRepository paparazzi-gradle-plugin:publishPluginMavenPublicationToMavenCentralRepository paparazzi-gradle-plugin:publishPaparazziPluginMarkerMavenPublicationToMavenCentralRepository --no-parallel
- Visit Sonatype Nexus and promote the artifacts.
git tag -a X.Y.Z -m "X.Y.Z"
(where X.Y.Z is the new version)- Update the
gradle.properties
to the next SNAPSHOT version. git commit -am "Prepare next development version"
git push && git push --tags
- Update the sample app to the release version and send a PR.
If step 5 or 6 fails, drop the Sonatype repo, fix the problem, commit, and start again at step 4.
In ~/.gradle/gradle.properties
, set the following:
mavenCentralUsername
- Sonatype username for releasing toapp.cash
.mavenCentralPassword
- Sonatype password for releasing toapp.cash
.