Skip to content

Commit

Permalink
Release - 4.9.1
Browse files Browse the repository at this point in the history
  • Loading branch information
mininny committed Jun 14, 2023
1 parent f1e42ee commit 60383e6
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 6 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Changelog

## v4.9.1 (Jun 14, 2023)
### **IMPORTANT NOTICE**
```diff
iOS Chat SDK version `4.9.0` has a bug where FileMessage is not received. Please skip version `4.9.0`, and update to version **`4.9.1`** or above instead.
```
### **Improvements**
- Fixed FileMessage being parsed as MultipleFilesMessage

## v4.9.0 (Jun 09, 2023)

### **Features**
Expand Down
6 changes: 3 additions & 3 deletions Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
import PackageDescription
let package = Package(
name: "SendbirdChatSDK",
platforms: [.iOS(.v9)],
platforms: [.iOS(.v11)],
products: [
.library(
name: "SendbirdChatSDK",
Expand All @@ -15,8 +15,8 @@ let package = Package(
targets: [
.binaryTarget(
name: "SendbirdChatSDK",
url: "https://github.com/sendbird/sendbird-chat-sdk-ios/releases/download/v4.9.0/SendbirdChatSDK.xcframework.zip",
checksum: "62c50913e45b94a91ce138ae2585b1ca4cd6d4027f629c3e67817fe380874c0e"
url: "https://github.com/sendbird/sendbird-chat-sdk-ios/releases/download/v4.9.1/SendbirdChatSDK.xcframework.zip",
checksum: "71ff73d7e026926ff2a8aaf54506b94d3d6abc4c0f088fc60cfb58d8d127f3a6"
),
]
)
4 changes: 2 additions & 2 deletions SendbirdChatSDK.podspec
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@

Pod::Spec.new do |s|
s.name = 'SendbirdChatSDK'
s.version = "4.9.0"
s.version = "4.9.1"
s.summary = 'Sendbird Chat iOS Framework'
s.description = 'Messaging and Chat API for Mobile Apps and Websites'
s.homepage = 'https://sendbird.com'
Expand All @@ -13,7 +13,7 @@ Pod::Spec.new do |s|
'Celine Moon' => '[email protected]',
'Ernest Hong' => '[email protected]'
}
s.source = { :http => "https://github.com/sendbird/sendbird-chat-sdk-ios/releases/download/v4.9.0/SendbirdChatSDK.zip", :sha1 => "e37cd60eb8e4df9adc9a22eaab8276f728914e30" }
s.source = { :http => "https://github.com/sendbird/sendbird-chat-sdk-ios/releases/download/v4.9.1/SendbirdChatSDK.zip", :sha1 => "df27e593cc7ec989c090665702d8015990907fd6" }
s.requires_arc = true
s.platform = :ios, '11.0'
s.documentation_url = 'https://sendbird.com/docs/chat'
Expand Down
2 changes: 1 addition & 1 deletion generate_package.sh
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ TEMPLATE="
import PackageDescription
let package = Package(
name: \"$PRODUCT\",
platforms: [.iOS(.v9)],
platforms: [.iOS(.v11)],
products: [
.library(
name: \"$PRODUCT\",
Expand Down

0 comments on commit 60383e6

Please sign in to comment.