diff --git a/CHANGELOG.md b/CHANGELOG.md index aa71521..47fd909 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,5 @@ +### version 3.0.2 (TDR) + ### version 3.0.1 (September 30th 2017) * fix issue 18: https://github.com/stephanenicolas/ormlite-android-gradle-plugin/issues/18 diff --git a/RELEASING.md b/RELEASING.md index 6b498bc..38e3a38 100644 --- a/RELEASING.md +++ b/RELEASING.md @@ -8,7 +8,7 @@ Releasing 5. `./gradlew --no-build-cache clean uploadArchives` 6. Visit [Sonatype Nexus](https://oss.sonatype.org/) and promote the artifact. 7. `git tag -a X.Y.X -m "Version X.Y.Z"` (where X.Y.Z is the new version) - 8. Update the `gradle.properties` to the next SNAPSHOT version. + 8. Update TWICE the `gradle.properties` to the next SNAPSHOT version. 9. `git commit -am "Prepare next development version."` 10. `git push && git push --tags` diff --git a/gradle.properties b/gradle.properties index 8bf00b2..26b8428 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,6 +1,6 @@ -version=3.0.1-SNAPSHOT +version=3.0.1 GROUP=com.github.stephanenicolas.ormgap -VERSION_NAME=3.0.1-SNAPSHOT +VERSION_NAME=3.0.1 POM_PACKAGING=JAR POM_DESCRIPTION=A Gradle plugin for Android to generate an ORMLite configuration file and boost DAOs creations.