diff --git a/README.md b/README.md index 0ce1504..ba7c460 100644 --- a/README.md +++ b/README.md @@ -22,7 +22,7 @@ example on how to retrieve it from Maven Central: } dependencies { - classpath 'com.google.appengine:gradle-appengine-plugin:1.9.21' + classpath 'com.google.appengine:gradle-appengine-plugin:1.9.22' } } @@ -33,7 +33,7 @@ convention property `downloadSdk` to `true`. This option requires you to specify the configuration `appengineSdk`. dependencies { - appengineSdk 'com.google.appengine:appengine-java-sdk:1.9.21' + appengineSdk 'com.google.appengine:appengine-java-sdk:1.9.22' } ## Tasks diff --git a/RELEASE_NOTES.md b/RELEASE_NOTES.md index 5743658..225a690 100644 --- a/RELEASE_NOTES.md +++ b/RELEASE_NOTES.md @@ -1,3 +1,9 @@ +### Version 1.9.22 (June 23rd, 2015) +* Added gcloud-preview plugin with Run and Deploy (com.google.gcloud-preview) +* Removed old gcloud plugin +* Update appengineStage task to remove datastore-indexes.xml after staging +* Added full path for appengine plugin (com.google.appengine) + ### Version 1.9.21 (June 2nd, 2015) * Version match release diff --git a/build.gradle b/build.gradle index d904c73..aba62b4 100644 --- a/build.gradle +++ b/build.gradle @@ -8,7 +8,7 @@ sourceCompatibility = JavaVersion.VERSION_1_7 targetCompatibility = JavaVersion.VERSION_1_7 group = 'com.google.appengine' -version = '1.9.21' +version = '1.9.22' project.ext.appengineVersion = version if ('snapshot' in project.gradle.startParameter.taskNames) { version = "${version}-SNAPSHOT"