diff --git a/CHANGELOG.md b/CHANGELOG.md index 44f1bf1..3648c05 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,15 @@ # Changelog +## v4.13.0 (Nov 24, 2023) + +### **Improvements** +- Added `logCustom()` in `FeedChannel` to log custom stat +- Added `NotificationMessageStatus` to represent whether the message was read or not +- Changed to not change channel's `isDirty` property when app switches from background to foreground +- Removed rate limit from markAsRead +- Improved logic to call the API in unnecessary situations in the `getChannel` while using local caching +- Improved stability + ## v4.12.3 (Oct 31, 2023) - Improved stability diff --git a/Package.swift b/Package.swift index 63ed803..af0735c 100644 --- a/Package.swift +++ b/Package.swift @@ -15,8 +15,8 @@ let package = Package( targets: [ .binaryTarget( name: "SendbirdChatSDK", - url: "https://github.com/sendbird/sendbird-chat-sdk-ios/releases/download/v4.12.3/SendbirdChatSDK.xcframework.zip", - checksum: "e14a4cd387bfbcb28dd571240ccf90573e0d28ecf6673fc3a3d3da38cca307e5" + url: "https://github.com/sendbird/sendbird-chat-sdk-ios/releases/download/v4.13.0/SendbirdChatSDK.xcframework.zip", + checksum: "5f7053e7adf317a615e97588cd60d0033e31c0f81b79c822956e0d0029f8cc75" ), ] ) diff --git a/SendbirdChatSDK.podspec b/SendbirdChatSDK.podspec index 460d4f0..ea08929 100644 --- a/SendbirdChatSDK.podspec +++ b/SendbirdChatSDK.podspec @@ -1,7 +1,7 @@ Pod::Spec.new do |s| s.name = 'SendbirdChatSDK' - s.version = "4.12.3" + s.version = "4.13.0" s.summary = 'Sendbird Chat iOS Framework' s.description = 'Messaging and Chat API for Mobile Apps and Websites' s.homepage = 'https://sendbird.com' @@ -13,7 +13,7 @@ Pod::Spec.new do |s| 'Celine Moon' => 'celine.moon@sendbird.com', 'Ernest Hong' => 'ernest.hong@sendbird.com' } - s.source = { :http => "https://github.com/sendbird/sendbird-chat-sdk-ios/releases/download/v4.12.3/SendbirdChatSDK.zip", :sha1 => "c95173ff77efb6b8ca504c2263f1e1b5ab9fd129" } + s.source = { :http => "https://github.com/sendbird/sendbird-chat-sdk-ios/releases/download/v4.13.0/SendbirdChatSDK.zip", :sha1 => "7f4334c272e4a4b6f4746a3e62ff694323fa34ca" } s.requires_arc = true s.platform = :ios, '11.0' s.documentation_url = 'https://sendbird.com/docs/chat'