From 5b94440f5feb03fe7292e2f34edc30422936685d Mon Sep 17 00:00:00 2001 From: Chang Xu <42978935+changxu0306@users.noreply.github.com> Date: Thu, 18 Mar 2021 11:43:55 -0700 Subject: [PATCH] chore(release) Release v1.17.1 (#1239) * chore(release) Release v1.17.1 * remove changes except version bump * Update configuration/checkstyle-rules.xml * core-kotlin version bump to v0.1.2 * remove change of checkstyle-ruls Co-authored-by: Richard McClellan --- README.md | 12 ++++++------ configuration/checkstyle-rules.xml | 1 - core-kotlin/gradle.properties | 2 +- gradle.properties | 2 +- rxbindings/README.md | 2 +- 5 files changed, 9 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index a15b08995e..ac547ebc3d 100644 --- a/README.md +++ b/README.md @@ -52,12 +52,12 @@ dependencies section: ```groovy dependencies { // Only specify modules that provide functionality your app will use - implementation 'com.amplifyframework:aws-analytics-pinpoint:1.17.0' - implementation 'com.amplifyframework:aws-api:1.17.0' - implementation 'com.amplifyframework:aws-auth-cognito:1.17.0' - implementation 'com.amplifyframework:aws-datastore:1.17.0' - implementation 'com.amplifyframework:aws-predictions:1.17.0' - implementation 'com.amplifyframework:aws-storage-s3:1.17.0' + implementation 'com.amplifyframework:aws-analytics-pinpoint:1.17.1' + implementation 'com.amplifyframework:aws-api:1.17.1' + implementation 'com.amplifyframework:aws-auth-cognito:1.17.1' + implementation 'com.amplifyframework:aws-datastore:1.17.1' + implementation 'com.amplifyframework:aws-predictions:1.17.1' + implementation 'com.amplifyframework:aws-storage-s3:1.17.1' } ``` diff --git a/configuration/checkstyle-rules.xml b/configuration/checkstyle-rules.xml index f96c8350f5..155712db53 100644 --- a/configuration/checkstyle-rules.xml +++ b/configuration/checkstyle-rules.xml @@ -300,4 +300,3 @@ - diff --git a/core-kotlin/gradle.properties b/core-kotlin/gradle.properties index e3f58ae96b..81dfff4c67 100644 --- a/core-kotlin/gradle.properties +++ b/core-kotlin/gradle.properties @@ -3,4 +3,4 @@ POM_NAME=Amplify Framework for Android - Kotlin facade for Core library POM_DESCRIPTION=Amplify Framework for Android - Kotlin facade for Core library POM_PACKAGING=aar -VERSION_NAME=0.1.1 +VERSION_NAME=0.1.2 diff --git a/gradle.properties b/gradle.properties index 59c26788e2..562f2e114e 100644 --- a/gradle.properties +++ b/gradle.properties @@ -12,7 +12,7 @@ org.gradle.jvmargs=-Xmx4g # http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects org.gradle.parallel=true -VERSION_NAME=1.17.0 +VERSION_NAME=1.17.1 POM_GROUP=com.amplifyframework POM_URL=https://github.com/aws-amplify/amplify-android diff --git a/rxbindings/README.md b/rxbindings/README.md index 47fcc2b09a..5b13afd33d 100644 --- a/rxbindings/README.md +++ b/rxbindings/README.md @@ -24,7 +24,7 @@ library. In your module's `build.gradle`: ```gradle dependencies { // Add this line. - implementation 'com.amplifyframework:rxbindings:1.17.0' + implementation 'com.amplifyframework:rxbindings:1.17.1' } ```