diff --git a/CHANGELOG.md b/CHANGELOG.md index 09e0f5263..be8257fe0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,10 @@ +## [Release 2.25.1](https://github.com/aws-amplify/amplify-android/releases/tag/release_v2.25.1) + +### Bug Fixes +- **auth:** Fix Device Metadata migration if alised userId was used ([#2963](https://github.com/aws-amplify/amplify-android/issues/2963)) + +[See all changes between 2.25.0 and 2.25.1](https://github.com/aws-amplify/amplify-android/compare/release_v2.25.0...release_v2.25.1) + ## [Release 2.25.0](https://github.com/aws-amplify/amplify-android/releases/tag/release_v2.25.0) ### Features diff --git a/README.md b/README.md index 2cef7659e..92a4429a8 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.25.0' - implementation 'com.amplifyframework:aws-api:2.25.0' - implementation 'com.amplifyframework:aws-auth-cognito:2.25.0' - implementation 'com.amplifyframework:aws-datastore:2.25.0' - implementation 'com.amplifyframework:aws-predictions:2.25.0' - implementation 'com.amplifyframework:aws-storage-s3:2.25.0' - implementation 'com.amplifyframework:aws-geo-location:2.25.0' - implementation 'com.amplifyframework:aws-push-notifications-pinpoint:2.25.0' + implementation 'com.amplifyframework:aws-analytics-pinpoint:2.25.1' + implementation 'com.amplifyframework:aws-api:2.25.1' + implementation 'com.amplifyframework:aws-auth-cognito:2.25.1' + implementation 'com.amplifyframework:aws-datastore:2.25.1' + implementation 'com.amplifyframework:aws-predictions:2.25.1' + implementation 'com.amplifyframework:aws-storage-s3:2.25.1' + implementation 'com.amplifyframework:aws-geo-location:2.25.1' + implementation 'com.amplifyframework:aws-push-notifications-pinpoint:2.25.1' } ``` diff --git a/gradle.properties b/gradle.properties index 8da828efd..f2961c0cc 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.25.0 +VERSION_NAME=2.25.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 3f179ee79..3ce08f68b 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.25.0' + implementation 'com.amplifyframework:rxbindings:2.25.1' } ```