From 9d495afb7b196ca5f960aeb55ab1d012f6e97af2 Mon Sep 17 00:00:00 2001 From: github-actions <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 4 Dec 2024 17:44:09 +0000 Subject: [PATCH] AUTOMATION: Version Bump and CHANGELOG Update --- CHANGELOG.md | 76 +------------------ .../getstream/chat/android/Configuration.kt | 2 +- 2 files changed, 2 insertions(+), 76 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 08bb0ed9e85..b1200dd23cf 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,50 +1,9 @@ -# UNRELEASED CHANGELOG -## Common changes for all artifacts -### 🐞 Fixed - -### ⬆️ Improved - -### ✅ Added - -### ⚠️ Changed - -### ❌ Removed - +# December 04th, 2024 - 6.7.0 ## stream-chat-android-client -### 🐞 Fixed - -### ⬆️ Improved - ### ✅ Added - Add `ChatClient::partialUpdateMember` for updating a `Member` in the scope of a `Channel`. [#5497](https://github.com/GetStream/stream-chat-android/pull/5497) - Add `ChannelClient::partialUpdateMember` for updating a `Member` in the scope of a `Channel`. [#5497](https://github.com/GetStream/stream-chat-android/pull/5497) -### ⚠️ 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 - Fix wrong timestamp used for the initial loading of pinned messages in `PinnedMessageListController`. [#5483](https://github.com/GetStream/stream-chat-android/pull/5483) @@ -54,50 +13,17 @@ ### ⬆️ Improved - Improve performance of opening a thread or message in a thread via `MessageListController`. [#5489](https://github.com/GetStream/stream-chat-android/pull/5489) -### ✅ Added - -### ⚠️ Changed - -### ❌ Removed - ## stream-chat-android-ui-components -### 🐞 Fixed - -### ⬆️ Improved - ### ✅ Added - Add `ChatUI.downloadAttachmentUriGenerator` property to generate download URIs for attachments. [#5490](https://github.com/GetStream/stream-chat-android/pull/5490) - Add `ChatUI.downloadRequestInterceptor` property to intercept download requests. [#5490](https://github.com/GetStream/stream-chat-android/pull/5490) -### ⚠️ Changed - -### ❌ Removed - ## stream-chat-android-compose -### 🐞 Fixed - -### ⬆️ Improved - ### ✅ Added - Add `ChatTheme.downloadAttachmentUriGenerator` property to generate download URIs for attachments. [#5490](https://github.com/GetStream/stream-chat-android/pull/5490) - Add `ChatTheme.downloadRequestInterceptor` property to intercept download requests. [#5490](https://github.com/GetStream/stream-chat-android/pull/5490) - Add `MessageContentFactory` class for customizing message contents. [#5498](https://github.com/GetStream/stream-chat-android/pull/5498) -### ⚠️ Changed - -### ❌ Removed - -## stream-chat-android-markdown-transformer -### 🐞 Fixed - -### ⬆️ Improved - -### ✅ Added - -### ⚠️ Changed - -### ❌ Removed - # November 21th, 2024 - 6.6.0 ## Common changes for all artifacts ### ⬆️ Improved 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 25dc7b52654..e72f852c4c2 100644 --- a/buildSrc/src/main/kotlin/io/getstream/chat/android/Configuration.kt +++ b/buildSrc/src/main/kotlin/io/getstream/chat/android/Configuration.kt @@ -6,7 +6,7 @@ object Configuration { const val sampleTargetSdk = 34 const val minSdk = 21 const val majorVersion = 6 - const val minorVersion = 6 + const val minorVersion = 7 const val patchVersion = 0 const val versionName = "$majorVersion.$minorVersion.$patchVersion" const val snapshotVersionName = "$majorVersion.$minorVersion.${patchVersion + 1}-SNAPSHOT"