diff --git a/CHANGELOG.md b/CHANGELOG.md index 6e0d5dd162f..da7d519e250 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,29 +1,15 @@ -# UNRELEASED CHANGELOG +# March 01th, 2024 - 6.1.0 ## Common changes for all artifacts -### 🐞 Fixed - ### ⬆️ Improved - Migrated the internal PhotoView library into the [photoview-android](https://github.com/GetStream/photoview-android), and now the `stream-chat-android-ui-components` doesn't need to depend on Jitpack. -### ✅ Added - ### ⚠️ Changed - Bump Compose UI to 1.6.2 and Compose compiler to 1.5.10. -### ❌ Removed - ## stream-chat-android-core -### 🐞 Fixed - -### ⬆️ Improved - ### ✅ Added - Added `LinkPreview` model to represent the link preview data. [#5184](https://github.com/GetStream/stream-chat-android/pull/5184) -### ⚠️ Changed - -### ❌ Removed - ## stream-chat-android-client ### 🐞 Fixed - Fixed `ArrayIndexOutOfBoundsException` in `ApiRequestsDumper`. [#5187](https://github.com/GetStream/stream-chat-android/pull/5187) @@ -34,80 +20,19 @@ ### ✅ Added - Added `ChatClient.enrichUrl` to enrich the URL with the preview data. [#5184](https://github.com/GetStream/stream-chat-android/pull/5184) -### ⚠️ Changed - -### ❌ Removed - -## stream-chat-android-offline -### 🐞 Fixed - -### ⬆️ Improved - -### ✅ Added - -### ⚠️ Changed - -### ❌ Removed - -## stream-chat-android-state -### 🐞 Fixed - -### ⬆️ Improved - -### ✅ Added - -### ⚠️ Changed - -### ❌ Removed - ## stream-chat-android-ui-common -### 🐞 Fixed - -### ⬆️ Improved - -### ✅ Added - ### ⚠️ Changed - Deprecated `AttachmentSelectionListener` class, use `AttachmentsSelectionListener` instead. [#5178](https://github.com/GetStream/stream-chat-android/pull/5178) -### ❌ Removed - ## stream-chat-android-ui-components -### 🐞 Fixed - -### ⬆️ Improved - ### ✅ Added - Added `MessageComposerView.attachmentsPickerDialogBuilder` lambda that allow you to create your own Picker Dialog. [#5178](https://github.com/GetStream/stream-chat-android/pull/5178) -### ⚠️ Changed - -### ❌ Removed - ## stream-chat-android-compose -### 🐞 Fixed - -### ⬆️ Improved - ### ✅ Added - Added `MessageComposerTheme` to customize the message composer. [#5183](https://github.com/GetStream/stream-chat-android/pull/5183) - Added `ComposerLinkPreview` to show link previews in the message composer. [#5184](https://github.com/GetStream/stream-chat-android/pull/5184) -### ⚠️ Changed - -### ❌ Removed - -## stream-chat-android-markdown-transformer -### 🐞 Fixed - -### ⬆️ Improved - -### ✅ Added - -### ⚠️ Changed - -### ❌ Removed - # February 13th, 2024 - 6.0.14 ## 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 ba84a502da0..d15b5c9ec4d 100644 --- a/buildSrc/src/main/kotlin/io/getstream/chat/android/Configuration.kt +++ b/buildSrc/src/main/kotlin/io/getstream/chat/android/Configuration.kt @@ -6,8 +6,8 @@ object Configuration { const val sampleTargetSdk = 34 const val minSdk = 21 const val majorVersion = 6 - const val minorVersion = 0 - const val patchVersion = 14 + const val minorVersion = 1 + const val patchVersion = 0 const val versionName = "$majorVersion.$minorVersion.$patchVersion" const val snapshotVersionName = "$majorVersion.$minorVersion.${patchVersion + 1}-SNAPSHOT" const val artifactGroup = "io.getstream"