diff --git a/CHANGELOG.md b/CHANGELOG.md index 935a9e47b8..b13cf7dd84 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,16 @@ +## [Release 2.2.0](https://github.com/aws-amplify/amplify-android/releases/tag/release_v2.2.0) + +### Features +- **auth:** add required hash param to cognito api calls (#2266) +- **datastore:** Add recoverability improvements (#2201) +- **auth:** Added parity test for fetchDevices,rememberDevice,forgetDevice and fetchUserAttributes (#2174) + +### Bug Fixes +- **analytics:** Remove test dependencies from implementation configuration (#2253) +- **auth:** Fix Authorization header for HostedUI fetchToken when appSecret is used (#2264) + +[See all changes between 2.1.1 and 2.2.0](https://github.com/aws-amplify/amplify-android/compare/release_v2.1.1...release_v2.2.0) + ## [Release 2.1.1](https://github.com/aws-amplify/amplify-android/releases/tag/release_v2.1.1) ### Bug Fixes diff --git a/README.md b/README.md index 0e08be729d..1df1a35293 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.1.1' - implementation 'com.amplifyframework:aws-api:2.1.1' - implementation 'com.amplifyframework:aws-auth-cognito:2.1.1' - implementation 'com.amplifyframework:aws-datastore:2.1.1' - implementation 'com.amplifyframework:aws-predictions:2.1.1' - implementation 'com.amplifyframework:aws-storage-s3:2.1.1' + 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' } ``` diff --git a/gradle.properties b/gradle.properties index a59babd8f0..5101f5bf0d 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.1.1 +VERSION_NAME=2.2.0 POM_GROUP=com.amplifyframework POM_URL=https://github.com/aws-amplify/amplify-android diff --git a/rxbindings/README.md b/rxbindings/README.md index ba1ab39696..864a46f6bd 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.1.1' + implementation 'com.amplifyframework:rxbindings:2.2.0' } ```