Skip to content

Commit

Permalink
Merge branch 'develop' into feature/reject-non-public-api-binary
Browse files Browse the repository at this point in the history
  • Loading branch information
torikizi committed Jan 23, 2025
2 parents 509b284 + 2b312fd commit 4fd2970
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 8 deletions.
4 changes: 4 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,10 @@

## develop

- [UPDATE] WebRTC m132.6834.5.2 に上げる
- Apple 非公開 API を利用していたため、App Store Connect へのアップロードに失敗する問題に対応
- @zztkm

## 2025.1.0

**リリース日**: 2025-01-21
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-132.6834.5.1/WebRTC.xcframework.zip"
let file = "WebRTC-132.6834.5.2/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: "aebb5da7acc657c3307394d114df4a4b69e747554f12af302bcdd2cd0c0b0d20"
checksum: "d610c8be95e865ae5b2c89f6c724222bf6c473cfffdb055245fa595c8c6541c6"
),
.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, '14.0'

target 'Sora' do
use_frameworks!
pod 'WebRTC', '132.6834.5.1'
pod 'WebRTC', '132.6834.5.2'
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, '14.0'

target 'Sora' do
use_frameworks!
pod 'WebRTC', '132.6834.5.1'
pod 'WebRTC', '132.6834.5.2'
pod 'SwiftLint', '0.51.0'
pod 'SwiftFormat/CLI', '0.53.2'
end
4 changes: 2 additions & 2 deletions Sora.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = "Sora"
s.version = "2025.1.0"
s.version = "2025.1.1-canary.0"
s.summary = "Sora iOS SDK"
s.description = <<-DESC
A library to develop Sora client applications.
Expand All @@ -15,7 +15,7 @@ Pod::Spec.new do |s|
}
s.source_files = "Sora/**/*.swift"
s.resources = ['Sora/*.xib']
s.dependency "WebRTC", '132.6834.5.1'
s.dependency "WebRTC", '132.6834.5.2'
s.pod_target_xcconfig = {
'ARCHS' => 'arm64',
'ARCHS[config=Debug]' => '$(ARCHS_STANDARD)'
Expand Down
4 changes: 2 additions & 2 deletions Sora/PackageInfo.swift
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/// :nodoc:
public enum SDKInfo {
// Sora iOS SDK のバージョンを定義する
public static let version = "2025.1.0"
public static let version = "2025.1.1-canary.0"
}

/**
Expand All @@ -18,7 +18,7 @@ public enum WebRTCInfo {
public static let commitPosition = "5"

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

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

0 comments on commit 4fd2970

Please sign in to comment.