diff --git a/CHANGELOG.md b/CHANGELOG.md index d44176c85d0..92876cb932d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,64 +1,15 @@ -# UNRELEASED CHANGELOG -## Common changes for all artifacts -### 🐞 Fixed - -### ⬆️ Improved - -### βœ… Added - -### ⚠️ Changed - -### ❌ Removed - +# December 11th, 2023 - 6.0.10 ## stream-chat-android-core -### 🐞 Fixed - -### ⬆️ Improved - -### βœ… Added - ### ⚠️ Changed - 🚨Breaking change: The following properties in `User` class are now **nullable**: `banned`, `invisible`. [#5107](https://github.com/GetStream/stream-chat-android/pull/5107) * Please use `User.isBanned` as non-nullable version. * Please use `User.isInvisible` as non-nullable version. * Properties such as `invisible`, `banned`, `teams` and `role` are not being used to establish WS connection flow if not specified. -### ❌ Removed - -## stream-chat-android-client -### 🐞 Fixed - -### ⬆️ Improved - -### βœ… Added - -### ⚠️ Changed - -### ❌ Removed - -## stream-chat-android-offline -### 🐞 Fixed - -### ⬆️ Improved - -### βœ… Added - -### ⚠️ Changed - -### ❌ Removed - ## stream-chat-android-state ### 🐞 Fixed - Fix wrong Message.ownReactions. [#5106](https://github.com/GetStream/stream-chat-android/pull/5106) -### ⬆️ Improved - -### βœ… Added - -### ⚠️ Changed - -### ❌ Removed - ## stream-chat-android-ui-common ### 🐞 Fixed - Fixed broken date formatting. [#5101](https://github.com/GetStream/stream-chat-android/pull/5101) @@ -67,14 +18,6 @@ - Fixed `MessageList` scrolling behaviour while receiving a new message. [#5112](https://github.com/GetStream/stream-chat-android/pull/5112) * `NewMessageState.MyOwn` and `NewMessageState.Other` are now data classes. -### ⬆️ Improved - -### βœ… Added - -### ⚠️ Changed - -### ❌ Removed - ## stream-chat-android-ui-components ### 🐞 Fixed - Fixed `MessageClickListener` never being called. [#5096](https://github.com/GetStream/stream-chat-android/pull/5096) @@ -82,14 +25,6 @@ * `MessageListViewModelFactory.showThreadSeparatorInEmptyThread` was added to control the visibility of the thread separator in empty threads. - Fixed: Regex was not correctly escaped in getOccurrenceRanges [#5109](https://github.com/GetStream/stream-chat-android/pull/5109) -### ⬆️ Improved - -### βœ… Added - -### ⚠️ Changed - -### ❌ Removed - ## stream-chat-android-compose ### 🐞 Fixed - Fixed thread separator ui order. [#5098](https://github.com/GetStream/stream-chat-android/pull/5098) @@ -98,23 +33,6 @@ ### ⬆️ Improved - Removed attachment picker customization limitation for `AttachmentsPickerTabFactory` non-file implementations. [#5104](https://github.com/GetStream/stream-chat-android/pull/5104) -### βœ… Added - -### ⚠️ Changed - -### ❌ Removed - -## stream-chat-android-markdown-transformer -### 🐞 Fixed - -### ⬆️ Improved - -### βœ… Added - -### ⚠️ Changed - -### ❌ Removed - # November 24th, 2023 - 6.0.9 ## 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 3581e6852f2..73e84312b0c 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 = 9 + const val patchVersion = 10 const val versionName = "$majorVersion.$minorVersion.$patchVersion" const val snapshotVersionName = "$majorVersion.$minorVersion.${patchVersion + 1}-SNAPSHOT" const val artifactGroup = "io.getstream"