diff --git a/CHANGELOG.md b/CHANGELOG.md index 85246caa77..f4f39fd78a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,10 @@ +## [Release 2.8.4](https://github.com/aws-amplify/amplify-android/releases/tag/release_v2.8.4) + +### Bug Fixes +- **datastore:** send only distinct network events after subscribe ([#2451](https://github.com/aws-amplify/amplify-android/issues/2451)) + +[See all changes between 2.8.3 and 2.8.4](https://github.com/aws-amplify/amplify-android/compare/release_v2.8.3...release_v2.8.4) + ## [Release 2.8.3](https://github.com/aws-amplify/amplify-android/releases/tag/release_v2.8.3) ### Bug Fixes diff --git a/README.md b/README.md index 1053063fac..09fa3b246e 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.3' - implementation 'com.amplifyframework:aws-api:2.8.3' - implementation 'com.amplifyframework:aws-auth-cognito:2.8.3' - implementation 'com.amplifyframework:aws-datastore:2.8.3' - implementation 'com.amplifyframework:aws-predictions:2.8.3' - implementation 'com.amplifyframework:aws-storage-s3:2.8.3' - implementation 'com.amplifyframework:aws-geo-location:2.8.3' - implementation 'com.amplifyframework:aws-push-notifications-pinpoint:2.8.3' + implementation 'com.amplifyframework:aws-analytics-pinpoint:2.8.4' + implementation 'com.amplifyframework:aws-api:2.8.4' + implementation 'com.amplifyframework:aws-auth-cognito:2.8.4' + implementation 'com.amplifyframework:aws-datastore:2.8.4' + implementation 'com.amplifyframework:aws-predictions:2.8.4' + implementation 'com.amplifyframework:aws-storage-s3:2.8.4' + implementation 'com.amplifyframework:aws-geo-location:2.8.4' + implementation 'com.amplifyframework:aws-push-notifications-pinpoint:2.8.4' } ``` diff --git a/gradle.properties b/gradle.properties index 6fff9943ea..9744f2da33 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.3 +VERSION_NAME=2.8.4 POM_GROUP=com.amplifyframework POM_URL=https://github.com/aws-amplify/amplify-android diff --git a/rxbindings/README.md b/rxbindings/README.md index b64b811f36..d0c6f7619f 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.3' + implementation 'com.amplifyframework:rxbindings:2.8.4' } ```