diff --git a/CHANGELOG.md b/CHANGELOG.md index cbdfacae57a..23e18108e89 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -14,7 +14,6 @@ ### 🐞 Fixed ### ⬆️ Improved -- Extended `PushMessage` to access extra data [#4940](https://github.com/GetStream/stream-chat-android/pull/4940) ### ✅ Added @@ -59,12 +58,10 @@ ### 🐞 Fixed ### ⬆️ Improved -- Extended channel list screen styling. [#4941](https://github.com/GetStream/stream-chat-android/pull/4941) ### ✅ Added ### ⚠️ Changed -- Changed `MessageListView.setCustomItemAnimator` signature to allow passing `null` to reset the item animator. [#4934](https://github.com/GetStream/stream-chat-android/pull/4934) ### ❌ Removed @@ -94,7 +91,6 @@ ### 🐞 Fixed ### ⬆️ Improved -- Extended `PushMessage` to access extra data [#4940](https://github.com/GetStream/stream-chat-android/pull/4940) ### ✅ Added @@ -106,7 +102,6 @@ ### 🐞 Fixed ### ⬆️ Improved -- Extended `PushMessage` to access extra data [#4940](https://github.com/GetStream/stream-chat-android/pull/4940) ### ✅ Added @@ -118,7 +113,6 @@ ### 🐞 Fixed ### ⬆️ Improved -- Extended `PushMessage` to access extra data [#4940](https://github.com/GetStream/stream-chat-android/pull/4940) ### ✅ Added @@ -126,6 +120,30 @@ ### ❌ Removed +# August 30th, 2023 - 5.17.12 +## stream-chat-android-client +### ⬆️ Improved +- Extended `PushMessage` to access extra data [#4940](https://github.com/GetStream/stream-chat-android/pull/4940) + +## stream-chat-android-ui-components +### ⬆️ Improved +- Extended channel list screen styling. [#4941](https://github.com/GetStream/stream-chat-android/pull/4941) + +### ⚠️ Changed +- Changed `MessageListView.setCustomItemAnimator` signature to allow passing `null` to reset the item animator. [#4934](https://github.com/GetStream/stream-chat-android/pull/4934) + +## stream-chat-android-pushprovider-firebase +### ⬆️ Improved +- Extended `PushMessage` to access extra data [#4940](https://github.com/GetStream/stream-chat-android/pull/4940) + +## stream-chat-android-pushprovider-huawei +### ⬆️ Improved +- Extended `PushMessage` to access extra data [#4940](https://github.com/GetStream/stream-chat-android/pull/4940) + +## stream-chat-android-pushprovider-xiaomi +### ⬆️ Improved +- Extended `PushMessage` to access extra data [#4940](https://github.com/GetStream/stream-chat-android/pull/4940) + # August 24th, 2023 - 5.17.11 ## stream-chat-android-client ### ✅ Added diff --git a/buildSrc/src/main/kotlin/io/getstream/chat/android/Configuration.kt b/buildSrc/src/main/kotlin/io/getstream/chat/android/Configuration.kt index e0662edf639..80de9785d0c 100644 --- a/buildSrc/src/main/kotlin/io/getstream/chat/android/Configuration.kt +++ b/buildSrc/src/main/kotlin/io/getstream/chat/android/Configuration.kt @@ -7,7 +7,7 @@ object Configuration { const val minSdk = 21 const val majorVersion = 5 const val minorVersion = 17 - const val patchVersion = 11 + const val patchVersion = 12 const val versionName = "$majorVersion.$minorVersion.$patchVersion" const val snapshotVersionName = "$majorVersion.$minorVersion.${patchVersion + 1}-SNAPSHOT" const val artifactGroup = "io.getstream"