From 79b7b474ec81b4585faf597aca20067f530d8896 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 10 Aug 2023 16:05:05 -0400 Subject: [PATCH] release: Amplify Android 2.11.2 (#2554) Co-authored-by: amplify-android-dev+ghops --- CHANGELOG.md | 8 ++++++++ README.md | 16 ++++++++-------- gradle.properties | 2 +- rxbindings/README.md | 2 +- 4 files changed, 18 insertions(+), 10 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1f1966bea6..5a2c9248f6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,11 @@ +## [Release 2.11.2](https://github.com/aws-amplify/amplify-android/releases/tag/release_v2.11.2) + +### Bug Fixes +- **datastore/flutter:** Custom type list serde ([#2545](https://github.com/aws-amplify/amplify-android/issues/2545)) +- **auth:** Prevent credential continuation from returning multiple times. ([#2541](https://github.com/aws-amplify/amplify-android/issues/2541)) + +[See all changes between 2.11.1 and 2.11.2](https://github.com/aws-amplify/amplify-android/compare/release_v2.11.1...release_v2.11.2) + ## [Release 2.11.1](https://github.com/aws-amplify/amplify-android/releases/tag/release_v2.11.1) ### Bug Fixes diff --git a/README.md b/README.md index 8462660fef..a356c2ba8e 100644 --- a/README.md +++ b/README.md @@ -71,14 +71,14 @@ dependencies section: ```groovy dependencies { // Only specify modules that provide functionality your app will use - implementation 'com.amplifyframework:aws-analytics-pinpoint:2.11.1' - implementation 'com.amplifyframework:aws-api:2.11.1' - implementation 'com.amplifyframework:aws-auth-cognito:2.11.1' - implementation 'com.amplifyframework:aws-datastore:2.11.1' - implementation 'com.amplifyframework:aws-predictions:2.11.1' - implementation 'com.amplifyframework:aws-storage-s3:2.11.1' - implementation 'com.amplifyframework:aws-geo-location:2.11.1' - implementation 'com.amplifyframework:aws-push-notifications-pinpoint:2.11.1' + implementation 'com.amplifyframework:aws-analytics-pinpoint:2.11.2' + implementation 'com.amplifyframework:aws-api:2.11.2' + implementation 'com.amplifyframework:aws-auth-cognito:2.11.2' + implementation 'com.amplifyframework:aws-datastore:2.11.2' + implementation 'com.amplifyframework:aws-predictions:2.11.2' + implementation 'com.amplifyframework:aws-storage-s3:2.11.2' + implementation 'com.amplifyframework:aws-geo-location:2.11.2' + implementation 'com.amplifyframework:aws-push-notifications-pinpoint:2.11.2' } ``` diff --git a/gradle.properties b/gradle.properties index 7f73af8db5..fd224c0cbd 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=2.11.1 +VERSION_NAME=2.11.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 a56dd4e6a4..90a3c92a9c 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:2.11.1' + implementation 'com.amplifyframework:rxbindings:2.11.2' } ```