diff --git a/CHANGELOG.md b/CHANGELOG.md index ec8be600d1e..8237f24dd7a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,74 +1,29 @@ -# UNRELEASED CHANGELOG -## Common changes for all artifacts -### 🐞 Fixed - -### ⬆️ Improved - -### βœ… Added - -### ⚠️ Changed - -### ❌ Removed - +# February 13th, 2024 - 6.0.14 ## stream-chat-android-client ### 🐞 Fixed - Prevent inserting reaction which violates `ForeignKey` constraint in local DB. [#5164](https://github.com/GetStream/stream-chat-android/pull/5164) - Fixed crash in `ChatEventsObservable.onNext`. [#5165](https://github.com/GetStream/stream-chat-android/pull/5165) -### ⬆️ Improved - ### βœ… Added - Added `DeleteChannelListener`. [#5164](https://github.com/GetStream/stream-chat-android/pull/5164) -### ⚠️ Changed - -### ❌ Removed - ## stream-chat-android-offline ### 🐞 Fixed - Prevent sending reaction for non-existing message. [#5164](https://github.com/GetStream/stream-chat-android/pull/5164) * `SendReactionListener.onSendReactionPrecondition` is now suspendable function. - Remove the deleted `Message` from cached `Channel.messages` collection. [#5170](https://github.com/GetStream/stream-chat-android/pull/5170) -### ⬆️ Improved - -### βœ… Added - -### ⚠️ Changed - -### ❌ Removed - ## stream-chat-android-state ### 🐞 Fixed - Clear stale cache inside `StateRegistry`. [#5164](https://github.com/GetStream/stream-chat-android/pull/5164) - Unread messages count is now updated properly. [#5175](https://github.com/GetStream/stream-chat-android/pull/5175) -### ⬆️ Improved - -### βœ… Added - -### ⚠️ Changed - -### ❌ Removed - ## stream-chat-android-ui-common -### 🐞 Fixed - -### ⬆️ Improved - -### βœ… Added - ### ⚠️ Changed - 🚨Breaking change: Changed `MessagePositionHandler.handleMessagePosition` signature. [#5168](https://github.com/GetStream/stream-chat-android/pull/5168) * Added `isInThread: Boolean` parameter. -### ❌ Removed - ## stream-chat-android-ui-components -### 🐞 Fixed - -### ⬆️ Improved - ### βœ… Added - Added new listeners and corresponding setters to `MessageListView` to allow better behaviour customization. [#5161](https://github.com/GetStream/stream-chat-android/pull/5161) * `OnEnterThreadListener` and `MessageListView.setOnEnterThreadListener` @@ -87,33 +42,10 @@ * `OnUserReactionClickListener` and `MessageListView.setOnUserReactionClickListener` - Added `messageBuilder` parameter to `MessageComposerViewModel.bindView` to allow customizing the message builder. [#5169](https://github.com/GetStream/stream-chat-android/pull/5169) -### ⚠️ Changed - -### ❌ Removed - ## stream-chat-android-compose ### 🐞 Fixed - Fix annotated messages not being building proper links. [#5163](https://github.com/GetStream/stream-chat-android/pull/5163) -### ⬆️ Improved - -### βœ… Added - -### ⚠️ Changed - -### ❌ Removed - -## stream-chat-android-markdown-transformer -### 🐞 Fixed - -### ⬆️ Improved - -### βœ… Added - -### ⚠️ Changed - -### ❌ Removed - # January 24th, 2024 - 6.0.13 ## stream-chat-android-client ### 🐞 Fixed 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 c147c5a69a9..ba84a502da0 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 = 6 const val minorVersion = 0 - const val patchVersion = 13 + const val patchVersion = 14 const val versionName = "$majorVersion.$minorVersion.$patchVersion" const val snapshotVersionName = "$majorVersion.$minorVersion.${patchVersion + 1}-SNAPSHOT" const val artifactGroup = "io.getstream"