diff --git a/CHANGELOG.md b/CHANGELOG.md index 237a0aa709..766dc95bee 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,10 @@ +## [Release 2.8.6](https://github.com/aws-amplify/amplify-android/releases/tag/release_v2.8.6) + +### Bug Fixes +- **datastore:** Flutter: fail to serialize list of custom type values ([#2462](https://github.com/aws-amplify/amplify-android/issues/2462)) + +[See all changes between 2.8.5 and 2.8.6](https://github.com/aws-amplify/amplify-android/compare/release_v2.8.5...release_v2.8.6) + ## [Release 2.8.5](https://github.com/aws-amplify/amplify-android/releases/tag/release_v2.8.5) ### Miscellaneous diff --git a/README.md b/README.md index 1b94e436de..780bfb34a8 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.5' - implementation 'com.amplifyframework:aws-api:2.8.5' - implementation 'com.amplifyframework:aws-auth-cognito:2.8.5' - implementation 'com.amplifyframework:aws-datastore:2.8.5' - implementation 'com.amplifyframework:aws-predictions:2.8.5' - implementation 'com.amplifyframework:aws-storage-s3:2.8.5' - implementation 'com.amplifyframework:aws-geo-location:2.8.5' - implementation 'com.amplifyframework:aws-push-notifications-pinpoint:2.8.5' + implementation 'com.amplifyframework:aws-analytics-pinpoint:2.8.6' + implementation 'com.amplifyframework:aws-api:2.8.6' + implementation 'com.amplifyframework:aws-auth-cognito:2.8.6' + implementation 'com.amplifyframework:aws-datastore:2.8.6' + implementation 'com.amplifyframework:aws-predictions:2.8.6' + implementation 'com.amplifyframework:aws-storage-s3:2.8.6' + implementation 'com.amplifyframework:aws-geo-location:2.8.6' + implementation 'com.amplifyframework:aws-push-notifications-pinpoint:2.8.6' } ``` diff --git a/gradle.properties b/gradle.properties index 83c82c5bab..85af6e7ed5 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.5 +VERSION_NAME=2.8.6 POM_GROUP=com.amplifyframework POM_URL=https://github.com/aws-amplify/amplify-android diff --git a/rxbindings/README.md b/rxbindings/README.md index cd360079bd..c5e9815c28 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.5' + implementation 'com.amplifyframework:rxbindings:2.8.6' } ```