From 0f7c12da7441a3ef8a2c6818db95b760cee05e03 Mon Sep 17 00:00:00 2001 From: "sha.sdk_deployment" Date: Wed, 17 Jan 2024 10:16:31 +0000 Subject: [PATCH] Update changelog for v4.14.1 --- CHANGELOG.md | 3 +++ README.md | 4 ++-- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3ea3a8d..1bb7ad3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,8 @@ # Changelog +## v4.14.1 (Jan 17, 2024) +### Improvements +- Fix intermittent `ConcurrentModificationException` in `MessageCollection` ## v4.14.0 (Dec 20, 2023) ### Features - Three new features related to Generative AI have been added: Form type, Suggested replies and Feedback. diff --git a/README.md b/README.md index 0fd9384..617e0d7 100644 --- a/README.md +++ b/README.md @@ -90,7 +90,7 @@ Then, add the dependency to the project's top-level `build.gradle` file: ```gradle dependencies { ... - implementation 'com.sendbird.sdk:sendbird-chat:4.14.0' + implementation 'com.sendbird.sdk:sendbird-chat:4.14.1' ... } ``` @@ -103,7 +103,7 @@ TLS 1.3 is enabled by default in Sendbird SDK for Android. To disable it, please ```gradle dependencies { - implementation ('com.sendbird.sdk:sendbird-chat:4.14.0') { + implementation ('com.sendbird.sdk:sendbird-chat:4.14.1') { exclude group: 'org.conscrypt', module: 'conscrypt-android' } }