diff --git a/CHANGELOG.md b/CHANGELOG.md index b13cf7dd84..d01813d5c0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,10 @@ +## [Release 2.2.1](https://github.com/aws-amplify/amplify-android/releases/tag/release_v2.2.1) + +### Bug Fixes +- **auth:** Moving credential provider to main (#2273) + +[See all changes between 2.2.0 and 2.2.1](https://github.com/aws-amplify/amplify-android/compare/release_v2.2.0...release_v2.2.1) + ## [Release 2.2.0](https://github.com/aws-amplify/amplify-android/releases/tag/release_v2.2.0) ### Features diff --git a/README.md b/README.md index 1df1a35293..22190e991e 100644 --- a/README.md +++ b/README.md @@ -69,12 +69,12 @@ dependencies section: ```groovy dependencies { // Only specify modules that provide functionality your app will use - implementation 'com.amplifyframework:aws-analytics-pinpoint:2.2.0' - implementation 'com.amplifyframework:aws-api:2.2.0' - implementation 'com.amplifyframework:aws-auth-cognito:2.2.0' - implementation 'com.amplifyframework:aws-datastore:2.2.0' - implementation 'com.amplifyframework:aws-predictions:2.2.0' - implementation 'com.amplifyframework:aws-storage-s3:2.2.0' + implementation 'com.amplifyframework:aws-analytics-pinpoint:2.2.1' + implementation 'com.amplifyframework:aws-api:2.2.1' + implementation 'com.amplifyframework:aws-auth-cognito:2.2.1' + implementation 'com.amplifyframework:aws-datastore:2.2.1' + implementation 'com.amplifyframework:aws-predictions:2.2.1' + implementation 'com.amplifyframework:aws-storage-s3:2.2.1' } ``` diff --git a/gradle.properties b/gradle.properties index 5101f5bf0d..22ee8fd841 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.2.0 +VERSION_NAME=2.2.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 864a46f6bd..34c90f7482 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.2.0' + implementation 'com.amplifyframework:rxbindings:2.2.1' } ```