diff --git a/CHANGELOG.md b/CHANGELOG.md index b78e9e6..8100f94 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # Changelog +## 15.8.3 +###### Release Date: 25-04-2024 +### 🐛 Bug Fixes +- Fixed issue where end users are able to click the same reply button multiple times in a workflow. +- Handled caching of Push Notification FF. + ## 15.8.2 ###### Release Date: 18-04-2024 ### 🐛 Bug Fixes diff --git a/README.md b/README.md index e45e0e1..9165b5b 100644 --- a/README.md +++ b/README.md @@ -43,7 +43,7 @@ There are 2 options for installing Intercom on your Android app. Add the following dependency to your app's `build.gradle` file: ```groovy dependencies { - implementation 'io.intercom.android:intercom-sdk:15.8.2' + implementation 'io.intercom.android:intercom-sdk:15.8.3' implementation 'com.google.firebase:firebase-messaging:20.+' } ``` @@ -53,7 +53,7 @@ dependencies { If you'd rather not have push notifications in your app, you can use this dependency: ```groovy dependencies { - implementation 'io.intercom.android:intercom-sdk-base:15.8.2' + implementation 'io.intercom.android:intercom-sdk-base:15.8.3' } ``` diff --git a/sample/app/build.gradle b/sample/app/build.gradle index 9392a4d..2e1281c 100644 --- a/sample/app/build.gradle +++ b/sample/app/build.gradle @@ -64,7 +64,7 @@ dependencies { implementation("androidx.datastore:datastore-preferences:1.0.0") - implementation("io.intercom.android:intercom-sdk:15.8.2") + implementation("io.intercom.android:intercom-sdk:15.8.3") implementation("com.google.firebase:firebase-messaging:23.1.0") }