From 401e7ad9900860ae33e3211d776d8266a06d35fe Mon Sep 17 00:00:00 2001 From: kanat <> Date: Fri, 25 Aug 2023 14:35:53 -0700 Subject: [PATCH] Prepare V6.0.0-beta5 version --- CHANGELOG.md | 20 ++++++++++++++++--- .../getstream/chat/android/Configuration.kt | 2 +- 2 files changed, 18 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6d9cf20981f..d0b86c57a91 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -56,15 +56,12 @@ ## stream-chat-android-ui-components ### 🐞 Fixed -- Fixed `LinkAttachmentView` to open the correct link when the attachment is clicked. [#4930](https://github.com/GetStream/stream-chat-android/pull/4930) ### ⬆️ Improved ### ✅ Added -- Added `MessageComposerViewModelBinder` for Java parity with Kotlin's `MessageComposerViewModel.bindView` extension function. [#4931](https://github.com/GetStream/stream-chat-android/pull/4931) ### ⚠️ Changed -- Changed `MessageListView.setCustomItemAnimator` signature to allow passing `null` to reset the item animator. [#4933](https://github.com/GetStream/stream-chat-android/pull/4933) ### ❌ Removed @@ -90,6 +87,23 @@ ### ❌ Removed +# August 25th, 2023 - 6.0.0-beta5 + +I hope you're interested in our latest major release - v6.0.0-beta5! We're currently in the process of preparing migration guides and updating all of our +documentation, but in the meantime, you can look into what we plan to release in v6 of Android Chat. + +If you want to learn more about these changes and our decisions, check out our [Android Chat v6 Blog Post](https://getstream.io/blog/announcement-android-sdk-6-beta/). + +## stream-chat-android-ui-components +### 🐞 Fixed +- Fixed `LinkAttachmentView` to open the correct link when the attachment is clicked. [#4930](https://github.com/GetStream/stream-chat-android/pull/4930) + +### ✅ Added +- Added `MessageComposerViewModelBinder` for Java parity with Kotlin's `MessageComposerViewModel.bindView` extension function. [#4931](https://github.com/GetStream/stream-chat-android/pull/4931) + +### ⚠️ Changed +- Changed `MessageListView.setCustomItemAnimator` signature to allow passing `null` to reset the item animator. [#4933](https://github.com/GetStream/stream-chat-android/pull/4933) + # August 18th, 2023 - 6.0.0-beta4 I hope you're interested in our latest major release - v6.0.0-beta4! We're currently in the process of preparing migration guides and updating all of our 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 0c9493dc54f..9c82c3ab502 100644 --- a/buildSrc/src/main/kotlin/io/getstream/chat/android/Configuration.kt +++ b/buildSrc/src/main/kotlin/io/getstream/chat/android/Configuration.kt @@ -8,7 +8,7 @@ object Configuration { const val majorVersion = 6 const val minorVersion = 0 const val patchVersion = 0 - const val versionSuffix = "-beta4" + const val versionSuffix = "-beta5" const val versionName = "$majorVersion.$minorVersion.$patchVersion$versionSuffix" const val snapshotVersionName = "$majorVersion.$minorVersion.${patchVersion + 1}-SNAPSHOT" const val artifactGroup = "io.getstream"