diff --git a/CHANGELOG.md b/CHANGELOG.md index b61d9013f3..cc117e30f8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,14 @@ +## [Release 2.9.0](https://github.com/aws-amplify/amplify-android/releases/tag/release_v2.9.0) + +### Features +- **api:** Custom Primary Key API Support([#2470](https://github.com/aws-amplify/amplify-android/issues/2470)) + +### Bug Fixes +- **misc:** bumping kotlin sdk version to include enhanced proxy exception messages ([#2438](https://github.com/aws-amplify/amplify-android/issues/2438)) +- **datastore:** DataStore CPK fixes([#2470](https://github.com/aws-amplify/amplify-android/issues/2470)) + +[See all changes between 2.8.7 and 2.9.0](https://github.com/aws-amplify/amplify-android/compare/release_v2.8.7...release_v2.9.0) + ## [Release 2.8.7](https://github.com/aws-amplify/amplify-android/releases/tag/release_v2.8.7) ### Bug Fixes diff --git a/README.md b/README.md index dd796d1e60..add05adcdc 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.8.7' - implementation 'com.amplifyframework:aws-api:2.8.7' - implementation 'com.amplifyframework:aws-auth-cognito:2.8.7' - implementation 'com.amplifyframework:aws-datastore:2.8.7' - implementation 'com.amplifyframework:aws-predictions:2.8.7' - implementation 'com.amplifyframework:aws-storage-s3:2.8.7' - implementation 'com.amplifyframework:aws-geo-location:2.8.7' - implementation 'com.amplifyframework:aws-push-notifications-pinpoint:2.8.7' + implementation 'com.amplifyframework:aws-analytics-pinpoint:2.9.0' + implementation 'com.amplifyframework:aws-api:2.9.0' + implementation 'com.amplifyframework:aws-auth-cognito:2.9.0' + implementation 'com.amplifyframework:aws-datastore:2.9.0' + implementation 'com.amplifyframework:aws-predictions:2.9.0' + implementation 'com.amplifyframework:aws-storage-s3:2.9.0' + implementation 'com.amplifyframework:aws-geo-location:2.9.0' + implementation 'com.amplifyframework:aws-push-notifications-pinpoint:2.9.0' } ``` diff --git a/gradle.properties b/gradle.properties index 5936140418..fbec4e6404 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.8.7 +VERSION_NAME=2.9.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 5be8217916..98accdf50c 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.8.7' + implementation 'com.amplifyframework:rxbindings:2.9.0' } ```