Skip to content

Commit

Permalink
Merge pull request #203 from shiguredo/feature/update-webrtc-m127.653…
Browse files Browse the repository at this point in the history
…3.1.1

WebRTC m127.6533.1.1 にあげる
  • Loading branch information
zztkm authored Jul 25, 2024
2 parents 364f1ce + 6e2bfd3 commit 0cf4cdb
Show file tree
Hide file tree
Showing 7 changed files with 13 additions and 12 deletions.
3 changes: 2 additions & 1 deletion CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,9 @@

## develop

- [UPDATE] WebRTC m125.6422.2.5 に上げる
- [UPDATE] WebRTC m127.6533.1.1 に上げる
- @miosakuma
- @zztkm
- [UPDATE] CocoaPods のソースリポジトリを GitHub から CDN に変更する
- CocoaPods 1.8 からソースリポジトリのデフォルトが `https://cdn.cocoapods.org/` になった
- https://blog.cocoapods.org/CocoaPods-1.8.0-beta/
Expand Down
4 changes: 2 additions & 2 deletions Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
import Foundation
import PackageDescription

let file = "WebRTC-125.6422.2.5/WebRTC.xcframework.zip"
let file = "WebRTC-127.6533.1.1/WebRTC.xcframework.zip"

let package = Package(
name: "Sora",
Expand All @@ -16,7 +16,7 @@ let package = Package(
.binaryTarget(
name: "WebRTC",
url: "https://github.com/shiguredo/sora-ios-sdk-specs/releases/download/\(file)",
checksum: "5f3b36455b72b1448800c38aae5435b973f1ad18169b9ce004e8f7eaee246be4"
checksum: "b9242358b4d53cafdf19d75a731cea87c84205475f54816e3a5cfd99cdb03216"
),
.target(
name: "Sora",
Expand Down
2 changes: 1 addition & 1 deletion Podfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,5 @@ platform :ios, '13.0'

target 'Sora' do
use_frameworks!
pod 'WebRTC', '125.6422.2.5'
pod 'WebRTC', '127.6533.1.1'
end
2 changes: 1 addition & 1 deletion Podfile.dev
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ platform :ios, '13.0'

target 'Sora' do
use_frameworks!
pod 'WebRTC', '125.6422.2.5'
pod 'WebRTC', '127.6533.1.1'
pod 'SwiftLint', '0.51.0'
pod 'SwiftFormat/CLI', '0.53.2'
end
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Sora iOS SDK

[![libwebrtc](https://img.shields.io/badge/libwebrtc-125.6422-blue.svg)](https://chromium.googlesource.com/external/webrtc/+/branch-heads/6422)
[![libwebrtc](https://img.shields.io/badge/libwebrtc-127.6533-blue.svg)](https://chromium.googlesource.com/external/webrtc/+/branch-heads/6533)
[![GitHub tag](https://img.shields.io/github/tag/shiguredo/sora-ios-sdk.svg)](https://github.com/shiguredo/sora-ios-sdk)
[![License](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](https://opensource.org/licenses/Apache-2.0)

Expand Down
2 changes: 1 addition & 1 deletion Sora.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ Pod::Spec.new do |s|
}
s.source_files = "Sora/**/*.swift"
s.resources = ['Sora/*.xib']
s.dependency "WebRTC", '125.6422.2.5'
s.dependency "WebRTC", '127.6533.1.1'
s.pod_target_xcconfig = {
'ARCHS' => 'arm64',
'ARCHS[config=Debug]' => '$(ARCHS_STANDARD)'
Expand Down
10 changes: 5 additions & 5 deletions Sora/PackageInfo.swift
Original file line number Diff line number Diff line change
Expand Up @@ -9,19 +9,19 @@ public enum SDKInfo {
*/
public enum WebRTCInfo {
/// WebRTC フレームワークのバージョン
public static let version = "M125"
public static let version = "M127"

/// WebRTC フレームワークのコミットポジション
public static let commitPosition = "2"
public static let commitPosition = "1"

/// WebRTC フレームワークのメンテナンスバージョン
public static let maintenanceVersion = "5"
public static let maintenanceVersion = "1"

/// WebRTC フレームワークのソースコードのリビジョン
public static let revision = "8505a9838ea91c66c96c173d30cd66f9dbcc7548"
public static let revision = "e0b28a6a81a989c1f5c89e30fcd247870047390d"

/// WebRTC の branch-heads
public static let branch = "6422"
public static let branch = "6433"

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

0 comments on commit 0cf4cdb

Please sign in to comment.