Skip to content

Commit a92c5e8

Browse files
committed
Release 1.7.0 - Update version to M112
1 parent 739cc77 commit a92c5e8

File tree

5 files changed

+13
-8
lines changed

5 files changed

+13
-8
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.7.0 (May 9, 2023)
4+
* Updated WebRTC version to M112.
5+
* Updated minimum iOS version to iOS 11.
6+
37
### 1.6.1 (Mar 10, 2023)
48
* Change LICENSE to LICENSE.md
59

Package.swift

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import PackageDescription
33

44
let package = Package(
55
name: "WebRTC",
6-
platforms: [.iOS(.v9)],
6+
platforms: [.iOS(.v11)],
77
products: [
88
.library(
99
name: "WebRTC",
@@ -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.6.1/WebRTC.xcframework.zip",
18-
checksum: "5356747071caf9ccea70c2b3a69676dde8cb2995af5d414fb64ca58713e788e6"
17+
url: "https://github.com/sendbird/sendbird-webrtc-ios/releases/download/1.7.0/WebRTC.xcframework.zip",
18+
checksum: "f35fb0120c70f15206099ca7e54ba0e9f8ada94655928dea333d207c7152ea4d"
1919
)
2020
]
2121
)

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ iOS 9.0 or higher
2929
Add below into your Podfile.
3030

3131
```
32-
platform :ios, '9.0'
32+
platform :ios, '11.0'
3333
use_frameworks!
3434
3535
target YOUR_PROJECT_TARGET do

SendBirdWebRTC.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,5 +7,6 @@
77
"1.4.0": "https://github.com/sendbird/sendbird-webrtc-ios/releases/download/1.4.0/WebRTC.xcframework.zip",
88
"1.5.0": "https://github.com/sendbird/sendbird-webrtc-ios/releases/download/1.5.0/WebRTC.xcframework.zip",
99
"1.6.0": "https://github.com/sendbird/sendbird-webrtc-ios/releases/download/1.6.0/WebRTC.xcframework.zip",
10-
"1.6.1": "https://github.com/sendbird/sendbird-webrtc-ios/releases/download/1.6.1/WebRTC.xcframework.zip"
10+
"1.6.1": "https://github.com/sendbird/sendbird-webrtc-ios/releases/download/1.6.1/WebRTC.xcframework.zip",
11+
"1.7.0": "https://github.com/sendbird/sendbird-webrtc-ios/releases/download/1.7.0/WebRTC.xcframework.zip"
1112
}

SendBirdWebRTC.podspec

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
Pod::Spec.new do |s|
22
s.name = "SendBirdWebRTC"
3-
s.version = "1.6.1"
3+
s.version = "1.7.0"
44
s.summary = "WebRTC Framework"
55
s.description = "WebRTC Framework for SendBird Video Chat"
66
s.homepage = "https://sendbird.com"
77
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
10-
s.platform = :ios, "9.0"
10+
s.platform = :ios, "11.0"
1111
s.documentation_url = 'https://docs.sendbird.com/'
12-
s.source = { :http => "https://github.com/sendbird/sendbird-webrtc-ios/releases/download/1.6.1/WebRTC.zip" }
12+
s.source = { :http => "https://github.com/sendbird/sendbird-webrtc-ios/releases/download/1.7.0/WebRTC.zip" }
1313
s.ios.vendored_frameworks = 'WebRTC.xcframework'
1414
s.pod_target_xcconfig = { 'EXCLUDED_ARCHS[sdk=iphonesimulator*]' => 'i386' }
1515
end

0 commit comments

Comments
 (0)