Skip to content

Commit 277d238

Browse files
committed
libwebrtc 132.6834.5.1
1 parent 8c2f5ab commit 277d238

File tree

7 files changed

+13
-13
lines changed

7 files changed

+13
-13
lines changed

CHANGES.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@
1111

1212
## develop
1313

14-
- [UPDATE] WebRTC m129.6668.1.0 に上げる
15-
- @miosakuma
14+
- [UPDATE] WebRTC m132.6834.5.1 に上げる
15+
- @miosakuma @zztkm
1616
- [UPDATE] システム条件の iOS を 14.0 に上げる
1717
- IPHONEOS_DEPLOYMENT_TARGET を 14.0 に上げる
1818
- SwiftPM の platforms の設定を v14 に上げる

Package.swift

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

6-
let file = "WebRTC-129.6668.1.0/WebRTC.xcframework.zip"
6+
let file = "WebRTC-132.6834.5.1/WebRTC.xcframework.zip"
77

88
let package = Package(
99
name: "Sora",
@@ -16,7 +16,7 @@ let package = Package(
1616
.binaryTarget(
1717
name: "WebRTC",
1818
url: "https://github.com/shiguredo/sora-ios-sdk-specs/releases/download/\(file)",
19-
checksum: "c23dc224a8edd61410c089696dc34c03c81712672b0e419df627d4e1fc15bafc"
19+
checksum: "aebb5da7acc657c3307394d114df4a4b69e747554f12af302bcdd2cd0c0b0d20"
2020
),
2121
.target(
2222
name: "Sora",

Podfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,5 @@ platform :ios, '14.0'
55

66
target 'Sora' do
77
use_frameworks!
8-
pod 'WebRTC', '129.6668.1.0'
8+
pod 'WebRTC', '132.6834.5.1'
99
end

Podfile.dev

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ platform :ios, '14.0'
55

66
target 'Sora' do
77
use_frameworks!
8-
pod 'WebRTC', '129.6668.1.0'
8+
pod 'WebRTC', '132.6834.5.1'
99
pod 'SwiftLint', '0.51.0'
1010
pod 'SwiftFormat/CLI', '0.53.2'
1111
end

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Sora iOS SDK
22

3-
[![libwebrtc](https://img.shields.io/badge/libwebrtc-129.6668-blue.svg)](https://chromium.googlesource.com/external/webrtc/+/branch-heads/6668)
3+
[![libwebrtc](https://img.shields.io/badge/libwebrtc-132.6834-blue.svg)](https://chromium.googlesource.com/external/webrtc/+/branch-heads/6834)
44
[![GitHub tag](https://img.shields.io/github/tag/shiguredo/sora-ios-sdk.svg)](https://github.com/shiguredo/sora-ios-sdk)
55
[![License](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](https://opensource.org/licenses/Apache-2.0)
66

Sora.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ Pod::Spec.new do |s|
1515
}
1616
s.source_files = "Sora/**/*.swift"
1717
s.resources = ['Sora/*.xib']
18-
s.dependency "WebRTC", '129.6668.1.0'
18+
s.dependency "WebRTC", '132.6834.5.1'
1919
s.pod_target_xcconfig = {
2020
'ARCHS' => 'arm64',
2121
'ARCHS[config=Debug]' => '$(ARCHS_STANDARD)'

Sora/PackageInfo.swift

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -9,19 +9,19 @@ public enum SDKInfo {
99
*/
1010
public enum WebRTCInfo {
1111
/// WebRTC フレームワークのバージョン
12-
public static let version = "M129"
12+
public static let version = "M132"
1313

1414
/// WebRTC の branch-heads
15-
public static let branch = "6668"
15+
public static let branch = "6834"
1616

1717
/// WebRTC フレームワークのコミットポジション
18-
public static let commitPosition = "1"
18+
public static let commitPosition = "5"
1919

2020
/// WebRTC フレームワークのメンテナンスバージョン
21-
public static let maintenanceVersion = "0"
21+
public static let maintenanceVersion = "1"
2222

2323
/// WebRTC フレームワークのソースコードのリビジョン
24-
public static let revision = "21508e08e7545a03c8c35a9299923279e3def319"
24+
public static let revision = "afaf497805cbb502da89991c2dcd783201efdd08"
2525

2626
/// WebRTC フレームワークのソースコードのリビジョン (短縮版)
2727
public static var shortRevision: String {

0 commit comments

Comments
 (0)