From 3a352efa1477332e206b4de0aabff7e3f84a3318 Mon Sep 17 00:00:00 2001 From: github-actions <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 24 Jan 2024 18:29:18 +0000 Subject: [PATCH] AUTOMATION: Version Bump and CHANGELOG Update --- CHANGELOG.md | 67 +------------------ .../getstream/chat/android/Configuration.kt | 2 +- 2 files changed, 2 insertions(+), 67 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c5deabca7fc..a11b0f39200 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,101 +1,36 @@ -# UNRELEASED CHANGELOG -## Common changes for all artifacts -### 🐞 Fixed - -### ⬆️ Improved - -### ✅ Added - -### ⚠️ Changed - -### ❌ Removed - +# January 24th, 2024 - 6.0.13 ## stream-chat-android-client ### 🐞 Fixed - Ensure PushNotification Permissions are only requested on the case `NotificationConfig.requestPermissionOnAppLaunch` lambda returns `true`.[#5158](https://github.com/GetStream/stream-chat-android/pull/5158) -### ⬆️ Improved - -### ✅ Added - ### ⚠️ Changed - Exposed `Decorator` and related classes for the better `MessageListView` customization. [#5144](https://github.com/GetStream/stream-chat-android/pull/5144) -### ❌ Removed - -## stream-chat-android-offline -### 🐞 Fixed - -### ⬆️ Improved - -### ✅ Added - -### ⚠️ Changed - -### ❌ Removed - ## stream-chat-android-state -### 🐞 Fixed - -### ⬆️ Improved - ### ✅ Added - Open `ChatClient.getMessageUsingCache()` extension method. [#5153](https://github.com/GetStream/stream-chat-android/pull/5153 -### ⚠️ Changed - -### ❌ Removed - ## stream-chat-android-ui-common ### 🐞 Fixed - Fixed unread count not being cleared while user is inside a channel. [#5146](https://github.com/GetStream/stream-chat-android/pull/5146) -### ⬆️ Improved - ### ✅ Added - Added `StartOfTheChannelItemState`, a new `MessageListItemState` that represent the start of the channel inside a message list. [#5145](https://github.com/GetStream/stream-chat-android/pull/5145) ### ⚠️ Changed - Changed `AttachmentConstants.MAX_ATTACHMENTS_COUNT` to align with the API limits. [#5159](https://github.com/GetStream/stream-chat-android/pull/5159) -### ❌ Removed - ## stream-chat-android-ui-components ### 🐞 Fixed - Fixed blinking of the message list. [#5150](https://github.com/GetStream/stream-chat-android/pull/5150) -### ⬆️ Improved - ### ✅ Added - Added `StartOfTheChannelItem`, a new `MessageListItem` that represent the start of the channel inside a message list. [#5145](https://github.com/GetStream/stream-chat-android/pull/5145) -### ⚠️ Changed - -### ❌ Removed - ## stream-chat-android-compose -### 🐞 Fixed - -### ⬆️ Improved - ### ✅ Added - Added `startOfTheChannelItemState` composable function to `MessageContainer` to be able to render the start of the channel. [#5145](https://github.com/GetStream/stream-chat-android/pull/5145) -### ⚠️ Changed - -### ❌ Removed - -## stream-chat-android-markdown-transformer -### 🐞 Fixed - -### ⬆️ Improved - -### ✅ Added - -### ⚠️ Changed - -### ❌ Removed - # January 09th, 2024 - 6.0.12 ## stream-chat-android-core ### ❌ Removed 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 bdf49d6582c..c147c5a69a9 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 = 12 + const val patchVersion = 13 const val versionName = "$majorVersion.$minorVersion.$patchVersion" const val snapshotVersionName = "$majorVersion.$minorVersion.${patchVersion + 1}-SNAPSHOT" const val artifactGroup = "io.getstream"