Skip to content

Commit 2a1859c

Browse files
committed
Release 1.5.0.
* Updated WebRTC version to M100. * Removed i386 architecture from the framework.
1 parent 3b42dd7 commit 2a1859c

File tree

4 files changed

+13
-6
lines changed

4 files changed

+13
-6
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Change Log
22

3+
### 1.5.0 (Apr 20, 2022)
4+
* Updated WebRTC version to M100.
5+
* Removed i386 architecture from the framework.
6+
37
### 1.4.0 (Oct 1, 2021)
48
* Updated WebRTC version to M93.
59
* Added support for Swift Package Manager.

Package.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@ let package = Package(
1414
targets: [
1515
.binaryTarget(
1616
name: "WebRTC",
17-
url: "https://github.com/sendbird/sendbird-webrtc-ios/releases/download/1.4.0/WebRTC.xcframework.zip",
18-
checksum: "8fad0f8a612e59204d2ab4e29e611213aa31522b5253dedfe9405ddcdc00437c"
17+
url: "https://github.com/sendbird/sendbird-webrtc-ios/releases/download/1.5.0/WebRTC.xcframework.zip",
18+
checksum: "76e50246603a1207ffc7802d73e0beb723eeff5e8708685c2346df38b303328b"
1919
)
2020
]
2121
)

SendBirdWebRTC.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,6 @@
44
"1.1.1": "https://github.com/sendbird/sendbird-webrtc-ios/releases/download/1.1.1/WebRTC.framework.zip",
55
"1.2.0": "https://github.com/sendbird/sendbird-webrtc-ios/releases/download/1.2.0/WebRTC.framework.zip",
66
"1.3.0": "https://github.com/sendbird/sendbird-webrtc-ios/releases/download/1.3.0/WebRTC.framework.zip",
7-
"1.4.0": "https://github.com/sendbird/sendbird-webrtc-ios/releases/download/1.4.0/WebRTC.xcframework.zip"
7+
"1.4.0": "https://github.com/sendbird/sendbird-webrtc-ios/releases/download/1.4.0/WebRTC.xcframework.zip",
8+
"1.5.0": "https://github.com/sendbird/sendbird-webrtc-ios/releases/download/1.5.0/WebRTC.xcframework.zip"
89
}

SendBirdWebRTC.podspec

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,16 @@
11
Pod::Spec.new do |s|
22
s.name = "SendBirdWebRTC"
3-
s.version = "1.4.0"
3+
s.version = "1.5.0"
44
s.summary = "WebRTC Framework"
55
s.description = "WebRTC Framework for SendBird Video Chat"
66
s.homepage = "https://sendbird.com"
7-
s.license = { :type => 'BSD', :file => 'WebRTC.xcframework/LICENSE.md' }
7+
s.license = { :type => 'BSD', :file => 'LICENSE.md' }
88
s.authors = { "Jed Gyeong" => "jed.gyeong@sendbird.com", "Young Hwang" => "young.hwang@sendbird.com", "Minhyuk Kim" => "minhyuk.kim@sendbird.com", "Jaesung Lee" => "jaesung.lee@sendbird.com" }
99
s.requires_arc = true
1010
s.platform = :ios, "9.0"
1111
s.documentation_url = 'https://docs.sendbird.com/'
12-
s.source = { :http => "https://github.com/sendbird/sendbird-webrtc-ios/releases/download/1.4.0/WebRTC.xcframework.zip" }
12+
s.source = { :http => "https://github.com/sendbird/sendbird-webrtc-ios/releases/download/1.5.0/WebRTC.zip" }
1313
s.ios.vendored_frameworks = 'WebRTC.xcframework'
14+
s.user_target_xcconfig = { 'EXCLUDED_ARCHS[sdk=iphonesimulator*]' => 'i386' }
15+
s.pod_target_xcconfig = { 'EXCLUDED_ARCHS[sdk=iphonesimulator*]' => 'i386' }
1416
end

0 commit comments

Comments
 (0)