* Fixed a bug that the message collection returned failed messages across all channels
* Changed the default value of `memberInfoInMessage` to `true` * Fixed a message search bug * Improved stability
This commit is contained in:
parent
3df3a02482
commit
1de271b704
|
@ -1,4 +1,10 @@
|
|||
# Change Log
|
||||
# Changelog
|
||||
|
||||
## v4.0.2 (Jun 28, 2022)
|
||||
* Fixed a bug that the message collection returned failed messages across all channels
|
||||
* Changed the default value of `memberInfoInMessage` to `true`
|
||||
* Fixed a message search bug
|
||||
* Improved stability
|
||||
|
||||
## v4.0.1 (Jun 23, 2022)
|
||||
* Fixed a bug that the failed message isn’t removed from the memory cache of the message collection
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
# Change Log
|
||||
# Changelog
|
||||
|
||||
## v4.0.0-beta.9 (Jun 10, 2022)
|
||||
*Contains all changes since v4.0.0-beta*
|
||||
|
|
|
@ -15,8 +15,8 @@ let package = Package(
|
|||
targets: [
|
||||
.binaryTarget(
|
||||
name: "SendbirdChatSDK",
|
||||
url: "https://github.com/sendbird/sendbird-chat-sdk-ios/releases/download/v4.0.1/SendbirdChatSDK.xcframework.zip",
|
||||
checksum: "7d11a32b4719edf047d503a1ccef7ce7065c229d4b886c64b3b5cd352770c19e"
|
||||
url: "https://github.com/sendbird/sendbird-chat-sdk-ios/releases/download/v4.0.2/SendbirdChatSDK.xcframework.zip",
|
||||
checksum: "f69344dfb13ff53e274fb9255953084c7a3137bd87ebc03f0b9c3ebb423684d8"
|
||||
),
|
||||
]
|
||||
)
|
||||
|
|
|
@ -1,10 +1,10 @@
|
|||
Pod::Spec.new do |s|
|
||||
s.name = 'SendbirdChatSDK'
|
||||
s.version = "4.0.1"
|
||||
s.version = "4.0.2"
|
||||
s.summary = 'Sendbird Chat iOS Framework'
|
||||
s.description = 'Messaging and Chat API for Mobile Apps and Websites'
|
||||
s.homepage = 'https://sendbird.com'
|
||||
s.license = { :type => 'Commercial', :file => 'LICENSE.md' }
|
||||
s.license = { :type => 'Commercial', :file => 'SendbirdChatSDK/LICENSE.md' }
|
||||
s.authors = {
|
||||
'Minhyuk Kim' => 'minhyuk.kim@sendbird.com',
|
||||
'Sendbird' => 'sha.sdk_deployment@sendbird.com',
|
||||
|
@ -13,8 +13,8 @@ Pod::Spec.new do |s|
|
|||
'Ernest Hong' => 'ernest.hong@sendbird.com'
|
||||
}
|
||||
s.source = {
|
||||
:http => "https://github.com/sendbird/sendbird-chat-sdk-ios/releases/download/v4.0.1/SendbirdChatSDK.zip",
|
||||
:sha1 => "154379e1693f45f761e019088519f1631f7dd633"
|
||||
:http => "https://github.com/sendbird/sendbird-chat-sdk-ios/releases/download/v4.0.2/SendbirdChatSDK.zip",
|
||||
:sha1 => "9245ead8a1777f4fd6563fda2b2dd44f0bf1e2d7"
|
||||
}
|
||||
s.requires_arc = true
|
||||
s.platform = :ios, '9.0'
|
||||
|
|
Loading…
Reference in New Issue