- Update the
CHANGELOG.md
file with relevant info and date. - Update version number in
gradle.properties
file. - Update version numbers in
ViewInspectorPlugin.groovy
file. - Update version number in
README.md
file. - Commit:
git commit -am "Prepare version X.Y.Z."
- Tag:
git tag -a X.Y.Z -m "Version X.Y.Z"
- Release:
./gradlew clean assemble bintrayUpload
- Visit bintray site and sync to MavenCentral
- Update version number in
gradle.properties
file to next "SNAPSHOT" version. - Update version number in
sample/build.gradle
file to next "SNAPSHOT" version. - Update version numbers in
ViewInspectorPlugin.groovy
file to next "SNAPSHOT" version. - Commit:
git commit -am "Prepare next development version."
- Push:
git push && git push --tags