From d6e98d8071b9d4cbbfcf929cec9d110d0f90d34b Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 20 Jan 2022 14:03:28 -0800 Subject: [PATCH] release: Amplify Android 1.31.2 (#1630) Co-authored-by: amplify-android-dev+ghops --- CHANGELOG.md | 9 +++++++++ README.md | 12 ++++++------ core-kotlin/CHANGELOG.md | 9 +++++++++ core-kotlin/gradle.properties | 2 +- gradle.properties | 2 +- rxbindings/README.md | 2 +- 6 files changed, 27 insertions(+), 9 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 7ee1596080..d7ed8278ce 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,12 @@ +## [Release 1.31.2](https://github.com/aws-amplify/amplify-android/releases/tag/release_v1.31.2) + +### Bug Fixes +- **aws-api-appsync:** update getModelFields for flutter support (#1611) +- **api:** create RequestDecorator in interceptor (#1623) +- **api:** prevent thread blocking on subx cancellation (#1482) + +[See all changes between 1.31.1 and 1.31.2](https://github.com/aws-amplify/amplify-android/compare/release_v1.31.1...release_v1.31.2) + ## [Release 1.31.1](https://github.com/aws-amplify/amplify-android/releases/tag/release_v1.31.1) ### Bug Fixes diff --git a/README.md b/README.md index e7b0a7f50d..48fb572507 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.31.1' - implementation 'com.amplifyframework:aws-api:1.31.1' - implementation 'com.amplifyframework:aws-auth-cognito:1.31.1' - implementation 'com.amplifyframework:aws-datastore:1.31.1' - implementation 'com.amplifyframework:aws-predictions:1.31.1' - implementation 'com.amplifyframework:aws-storage-s3:1.31.1' + implementation 'com.amplifyframework:aws-analytics-pinpoint:1.31.2' + implementation 'com.amplifyframework:aws-api:1.31.2' + implementation 'com.amplifyframework:aws-auth-cognito:1.31.2' + implementation 'com.amplifyframework:aws-datastore:1.31.2' + implementation 'com.amplifyframework:aws-predictions:1.31.2' + implementation 'com.amplifyframework:aws-storage-s3:1.31.2' } ``` diff --git a/core-kotlin/CHANGELOG.md b/core-kotlin/CHANGELOG.md index d43cb684b2..bc46ac5942 100644 --- a/core-kotlin/CHANGELOG.md +++ b/core-kotlin/CHANGELOG.md @@ -1,3 +1,12 @@ +## [Release 0.15.2](https://github.com/aws-amplify/amplify-android/releases/tag/release-kotlin_v0.15.2) + +### Bug Fixes +- **aws-api-appsync:** update getModelFields for flutter support (#1611) +- **api:** create RequestDecorator in interceptor (#1623) +- **api:** prevent thread blocking on subx cancellation (#1482) + +[See all changes between 0.15.1 and 0.15.2](https://github.com/aws-amplify/amplify-android/compare/release-kotlin_v0.15.1...release-kotlin_v0.15.2) + ## [Release 0.15.1](https://github.com/aws-amplify/amplify-android/releases/tag/release-kotlin_v0.15.1) ### Bug Fixes diff --git a/core-kotlin/gradle.properties b/core-kotlin/gradle.properties index 86a466df4c..d1feb5dc49 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.15.1 +VERSION_NAME=0.15.2 diff --git a/gradle.properties b/gradle.properties index a146a79caa..7e4ef924d2 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.31.1 +VERSION_NAME=1.31.2 POM_GROUP=com.amplifyframework POM_URL=https://github.com/aws-amplify/amplify-android diff --git a/rxbindings/README.md b/rxbindings/README.md index ca0c094521..67fd28a915 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.31.1' + implementation 'com.amplifyframework:rxbindings:1.31.2' } ```