From b3c79fb1e315f253f2d5f9e5393f99ba19088ae8 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 19 Jun 2024 15:38:58 -0400 Subject: [PATCH] release: Amplify Android 2.19.1 (#2855) 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 0210f6da1..99652db70 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,11 @@ +## [Release 2.19.1](https://github.com/aws-amplify/amplify-android/releases/tag/release_v2.19.1) + +### Bug Fixes +- **auth:** Fix isSignedIn states ([#2830](https://github.com/aws-amplify/amplify-android/issues/2830)) +- **DataStore:** should not crash on missing version metadata ([#2849](https://github.com/aws-amplify/amplify-android/issues/2849)) + +[See all changes between 2.19.0 and 2.19.1](https://github.com/aws-amplify/amplify-android/compare/release_v2.19.0...release_v2.19.1) + ## [Release 2.19.0](https://github.com/aws-amplify/amplify-android/releases/tag/release_v2.19.0) ### Miscellaneous diff --git a/README.md b/README.md index 1642b2a02..915fdadf0 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.19.0' - implementation 'com.amplifyframework:aws-api:2.19.0' - implementation 'com.amplifyframework:aws-auth-cognito:2.19.0' - implementation 'com.amplifyframework:aws-datastore:2.19.0' - implementation 'com.amplifyframework:aws-predictions:2.19.0' - implementation 'com.amplifyframework:aws-storage-s3:2.19.0' - implementation 'com.amplifyframework:aws-geo-location:2.19.0' - implementation 'com.amplifyframework:aws-push-notifications-pinpoint:2.19.0' + implementation 'com.amplifyframework:aws-analytics-pinpoint:2.19.1' + implementation 'com.amplifyframework:aws-api:2.19.1' + implementation 'com.amplifyframework:aws-auth-cognito:2.19.1' + implementation 'com.amplifyframework:aws-datastore:2.19.1' + implementation 'com.amplifyframework:aws-predictions:2.19.1' + implementation 'com.amplifyframework:aws-storage-s3:2.19.1' + implementation 'com.amplifyframework:aws-geo-location:2.19.1' + implementation 'com.amplifyframework:aws-push-notifications-pinpoint:2.19.1' } ``` diff --git a/gradle.properties b/gradle.properties index 13e668293..ccff4c852 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.19.0 +VERSION_NAME=2.19.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 855f622ee..ebb87e549 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.19.0' + implementation 'com.amplifyframework:rxbindings:2.19.1' } ```