diff --git a/CHANGELOG.md b/CHANGELOG.md index f5c9ed8..16aebc9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,26 @@ # Changelog +## v4.17.0 (Feb 28, 2024) + +### New Interfaces +- Added message template interfaces + - Added classes + - `MessageTemplateListParams` class + - `MessageTemplate` class + - `MessageTemplateInfo` class + - `MessageTemplateList` class + - Added functions + - `getMessageTemplateList(token:params:completionHandler:)` function in `SendbirdChat` class + - `getMessageTemplate(key:completionHandler:)` function in `SendbirdChat` class + - Added handlers + - `MessageTemplateHandler` in `Handlers` class + - `MessageTemplateListHandler` in `Handlers` class + - Added `messageTemplateInfo` property in `AppInfo` class + +### Improvements +- Fixed negative value setting case when backsync progress +- Improved stability + ## v4.16.1 (Feb 21, 2024) ### Improvements diff --git a/Package.swift b/Package.swift index 162415a..4dfd361 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.16.1/SendbirdChatSDK.xcframework.zip", - checksum: "42144c63a0f9e132df8aebfdb4ccdfaff0c1c796e93f5b0bd6ea226bca37c492" + url: "https://github.com/sendbird/sendbird-chat-sdk-ios/releases/download/v4.17.0/SendbirdChatSDK.xcframework.zip", + checksum: "c05b8bcc3dafb0d328d5e52ee942ea2e5e516235500ad5d9e89585920ca0cef4" ), ] ) diff --git a/SendbirdChatSDK.podspec b/SendbirdChatSDK.podspec index d2199de..fa53b8d 100644 --- a/SendbirdChatSDK.podspec +++ b/SendbirdChatSDK.podspec @@ -1,7 +1,7 @@ Pod::Spec.new do |s| s.name = 'SendbirdChatSDK' - s.version = "4.16.1" + s.version = "4.17.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.16.1/SendbirdChatSDK.zip", :sha1 => "d44c067e4893b8584a65c6175073b92b00793961" } + s.source = { :http => "https://github.com/sendbird/sendbird-chat-sdk-ios/releases/download/v4.17.0/SendbirdChatSDK.zip", :sha1 => "fb44422e4a840bbbfe3d0d297d94463096caaad5" } s.requires_arc = true s.platform = :ios, '11.0' s.documentation_url = 'https://sendbird.com/docs/chat'