From c72f75fded32c8a6e34c66f41ee8c3410408f82d Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 14 Dec 2023 11:31:32 -0800 Subject: [PATCH] release: Amplify Android 2.14.7 (#2656) Co-authored-by: amplify-android-dev+ghops --- CHANGELOG.md | 7 +++++++ README.md | 16 ++++++++-------- gradle.properties | 2 +- rxbindings/README.md | 2 +- 4 files changed, 17 insertions(+), 10 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 7a04fb6aa0..52688e5760 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,10 @@ +## [Release 2.14.7](https://github.com/aws-amplify/amplify-android/releases/tag/release_v2.14.7) + +### Bug Fixes +- **datastore:** Update Model Class Check in getMutationForModelId() from using ModelSchema class name to mutatedItem modelName ([#2637](https://github.com/aws-amplify/amplify-android/issues/2637)) + +[See all changes between 2.14.6 and 2.14.7](https://github.com/aws-amplify/amplify-android/compare/release_v2.14.6...release_v2.14.7) + ## [Release 2.14.6](https://github.com/aws-amplify/amplify-android/releases/tag/release_v2.14.6) ### Bug Fixes diff --git a/README.md b/README.md index 9d7b0f7e90..a081e17576 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.14.6' - implementation 'com.amplifyframework:aws-api:2.14.6' - implementation 'com.amplifyframework:aws-auth-cognito:2.14.6' - implementation 'com.amplifyframework:aws-datastore:2.14.6' - implementation 'com.amplifyframework:aws-predictions:2.14.6' - implementation 'com.amplifyframework:aws-storage-s3:2.14.6' - implementation 'com.amplifyframework:aws-geo-location:2.14.6' - implementation 'com.amplifyframework:aws-push-notifications-pinpoint:2.14.6' + implementation 'com.amplifyframework:aws-analytics-pinpoint:2.14.7' + implementation 'com.amplifyframework:aws-api:2.14.7' + implementation 'com.amplifyframework:aws-auth-cognito:2.14.7' + implementation 'com.amplifyframework:aws-datastore:2.14.7' + implementation 'com.amplifyframework:aws-predictions:2.14.7' + implementation 'com.amplifyframework:aws-storage-s3:2.14.7' + implementation 'com.amplifyframework:aws-geo-location:2.14.7' + implementation 'com.amplifyframework:aws-push-notifications-pinpoint:2.14.7' } ``` diff --git a/gradle.properties b/gradle.properties index 2497f06a4a..afc8279afc 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.14.6 +VERSION_NAME=2.14.7 POM_GROUP=com.amplifyframework POM_URL=https://github.com/aws-amplify/amplify-android diff --git a/rxbindings/README.md b/rxbindings/README.md index 524b322b2b..51c9388c44 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.14.6' + implementation 'com.amplifyframework:rxbindings:2.14.7' } ```