Skip to content

Commit

Permalink
WebRTC 123.6312.3.0 にあげる
Browse files Browse the repository at this point in the history
  • Loading branch information
miosakuma committed Mar 27, 2024
1 parent 4dd01e2 commit 69112ab
Show file tree
Hide file tree
Showing 7 changed files with 12 additions and 9 deletions.
3 changes: 3 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,9 @@

## develop

- [UPDATE] WebRTC m123.6312.3.0 に上げる
- @miosakuma

## 2024.1.0

- [CHANGE] SignalingNotify の metadataList を削除する
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-121.6167.4.0/WebRTC.xcframework.zip"
let file = "WebRTC-123.6312.3.0/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: "096ca45c53b7b77805e6368154462610a8182f61d58a796e69d7b4eb48378f44"
checksum: "cb7b9631bac05f2ab9b15772a63bc88529a05192b0f92c3fcb4f28678ea57fe9"
),
.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', '121.6167.4.0'
pod 'WebRTC', '123.6312.3.0'
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', '121.6167.4.0'
pod 'WebRTC', '123.6312.3.0'
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-121.6167-blue.svg)](https://chromium.googlesource.com/external/webrtc/+/branch-heads/6167)
[![libwebrtc](https://img.shields.io/badge/libwebrtc-123.6312-blue.svg)](https://chromium.googlesource.com/external/webrtc/+/branch-heads/6312)
[![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", '121.6167.4.0'
s.dependency "WebRTC", '123.6312.3.0'
s.pod_target_xcconfig = {
'ARCHS' => 'arm64',
'ARCHS[config=Debug]' => '$(ARCHS_STANDARD)'
Expand Down
6 changes: 3 additions & 3 deletions Sora/PackageInfo.swift
Original file line number Diff line number Diff line change
Expand Up @@ -9,16 +9,16 @@ public enum SDKInfo {
*/
public enum WebRTCInfo {
/// WebRTC フレームワークのバージョン
public static let version = "M121"
public static let version = "M123"

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

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

/// WebRTC フレームワークのソースコードのリビジョン
public static let revision = "0f741da200c064aea70a790d2fbf678e930bff39"
public static let revision = "41b1493ddb5d98e9125d5cb002fd57ce76ebd8a7"

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

0 comments on commit 69112ab

Please sign in to comment.