From b3314fff93202d5756db37bd8622bb11485c51f4 Mon Sep 17 00:00:00 2001 From: miosakuma Date: Wed, 13 Sep 2023 19:00:08 +0900 Subject: [PATCH 1/5] =?UTF-8?q?=E9=96=8B=E7=99=BA=E7=94=A8=E3=81=AB=20sora?= =?UTF-8?q?-ios-sdk=20=E3=81=AE=20develop=20=E3=83=96=E3=83=A9=E3=83=B3?= =?UTF-8?q?=E3=83=81=E3=82=92=E5=8F=82=E7=85=A7=E3=81=99=E3=82=8B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Podfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Podfile b/Podfile index d4925ba..0810cbb 100644 --- a/Podfile +++ b/Podfile @@ -5,7 +5,7 @@ platform :ios, '13.0' target 'SoraQuickStart' do use_frameworks! - pod 'Sora', '2023.3.0' + pod 'Sora', :git => 'https://github.com/shiguredo/sora-ios-sdk.git', :branch => 'develop' # SwiftLint, SwiftFormat/CLI が Swift 5.8 に対応していないため一時的にコメントアウトする # pod 'SwiftLint' # pod 'SwiftFormat/CLI' From 86eb841465cf804d4f6171993cd659914ef9316e Mon Sep 17 00:00:00 2001 From: miosakuma Date: Wed, 13 Sep 2023 19:00:48 +0900 Subject: [PATCH 2/5] =?UTF-8?q?=E5=A4=89=E6=9B=B4=E5=B1=A5=E6=AD=B4?= =?UTF-8?q?=E3=81=AE=E3=82=A4=E3=83=B3=E3=83=87=E3=83=B3=E3=83=88=E3=82=92?= =?UTF-8?q?=E4=BF=AE=E6=AD=A3=E3=81=99=E3=82=8B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- CHANGES.md | 72 +++++++++++++++++++++++++++--------------------------- 1 file changed, 36 insertions(+), 36 deletions(-) diff --git a/CHANGES.md b/CHANGES.md index 6703465..045b9c4 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,73 +1,73 @@ # 変更履歴 - CHANGE - - 下位互換のない変更 + - 下位互換のない変更 - UPDATE - - 下位互換がある変更 + - 下位互換がある変更 - ADD - - 下位互換がある追加 + - 下位互換がある追加 - FIX - - バグ修正 + - バグ修正 ## develop ## sora-ios-sdk-2023.3.0 - [UPDATE] SwiftLint, SwiftFormat/CLI を一時的にコメントアウトする - - SwiftLint, SwiftFormat/CLI が Swift Swift 5.9 に対応できていないため - - 対応が完了したら戻す - - @miosakuma + - SwiftLint, SwiftFormat/CLI が Swift Swift 5.9 に対応できていないため + - 対応が完了したら戻す + - @miosakuma ## sora-ios-sdk-2023.2.0 - [UPDATE] システム条件を変更する - - macOS 13.4.1 以降 - - Xcode 14.3.1 - - Swift 5.8.1 - - CocoaPods 1.12.1 以降 - - WebRTC SFU Sora 2023.1.0 以降 - - @miosakuma + - macOS 13.4.1 以降 + - Xcode 14.3.1 + - Swift 5.8.1 + - CocoaPods 1.12.1 以降 + - WebRTC SFU Sora 2023.1.0 以降 + - @miosakuma ## sora-ios-sdk-2023.1.0 - [UPDATE] システム条件を変更する - - macOS 13.3 以降 - - Xcode 14.3 - - Swift 5.8 - - CocoaPods 1.12.0 以降 - - WebRTC SFU Sora 2022.2.0 以降 - - @miosakuma + - macOS 13.3 以降 + - Xcode 14.3 + - Swift 5.8 + - CocoaPods 1.12.0 以降 + - WebRTC SFU Sora 2022.2.0 以降 + - @miosakuma ## sora-ios-sdk-2022.6.0 - [CHANGE] システム条件を変更する - - アーキテクチャ から x86_64 を削除 - - macOS 12.6 以降 - - Xcode 14.0 - - Swift 5.7 - - CocoaPods 1.11.3 以降 - - @miosakuma + - アーキテクチャ から x86_64 を削除 + - macOS 12.6 以降 + - Xcode 14.0 + - Swift 5.7 + - CocoaPods 1.11.3 以降 + - @miosakuma ## sora-ios-sdk-2022.5.0 - [UPDATE] システム条件を変更する - - macOS 12.3 以降 - - Xcode 13.4.1 - - @miosakuma + - macOS 12.3 以降 + - Xcode 13.4.1 + - @miosakuma ## sora-ios-sdk-2022.4.0 - [UPDATE] システム条件を変更する - - macOS 12.3 以降 - - WebRTC SFU Sora 2022.1 以降 - - @miosakuma - + - macOS 12.3 以降 + - WebRTC SFU Sora 2022.1 以降 + - @miosakuma + ## sora-ios-sdk-2022.3.0 -- [ADD] 接続失敗時とサーバーによる切断時にエラー内容をアラートで表示する - - @szktty +- [ADD] 接続失敗時とサーバーによる切断時にエラー内容をアラートで表示する + - @szktty ## sora-ios-sdk-2022.2.0 -- [UPDATE] Environment.example.swift に signalingConnectMetadata を追加する - - @miosakuma +- [UPDATE] Environment.example.swift に signalingConnectMetadata を追加する + - @miosakuma From 9b51a7a733e34e0a4ed5a5970b6aa3cb54691574 Mon Sep 17 00:00:00 2001 From: miosakuma Date: Wed, 13 Sep 2023 19:07:34 +0900 Subject: [PATCH 3/5] =?UTF-8?q?CI=20=E3=81=AE=E3=82=B9=E3=83=9A=E3=83=AB?= =?UTF-8?q?=E3=83=9F=E3=82=B9=E3=82=92=E4=BF=AE=E6=AD=A3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index d5871b0..cdda14d 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -58,7 +58,7 @@ jobs: release: if: contains(github.ref, 'tags/v') needs: [build] - runs-on: macOS-latest + runs-on: macos-latest steps: - name: Checkout code uses: actions/checkout@v3 From bd4e87156854a57c37d660f750de8dabf47fd6a8 Mon Sep 17 00:00:00 2001 From: miosakuma Date: Wed, 20 Sep 2023 10:50:45 +0900 Subject: [PATCH 4/5] =?UTF-8?q?Github=20Actions=20=E3=81=AE=20actions/chec?= =?UTF-8?q?kout=20=E3=82=92=20v4=20=E3=81=AB=E3=81=82=E3=81=92=E3=82=8B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/build.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index cdda14d..1c50f84 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -16,7 +16,7 @@ jobs: XCODE: /Applications/Xcode_14.3.1.app XCODE_SDK: iphoneos16.4 steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Select Xcode Version run: sudo xcode-select -s '${{ env.XCODE }}/Contents/Developer' - name: Show Xcode Version @@ -61,7 +61,7 @@ jobs: runs-on: macos-latest steps: - name: Checkout code - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Create Release id: create_release uses: actions/create-release@v1.1.4 From 314405582b67d8cd09fc626be9177e2206657976 Mon Sep 17 00:00:00 2001 From: miosakuma Date: Tue, 24 Oct 2023 16:31:07 +0900 Subject: [PATCH 5/5] =?UTF-8?q?Sora=20iOS=20SDK=202023.3.1=20=E3=83=AA?= =?UTF-8?q?=E3=83=AA=E3=83=BC=E3=82=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- CHANGES.md | 5 +++++ Podfile | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/CHANGES.md b/CHANGES.md index 045b9c4..7f54e74 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -11,6 +11,11 @@ ## develop +## sora-ios-sdk-2023.3.1 + +- [UPDATE] Sora iOS SDK を 2023.3.1 にあげる + - @miosakuma + ## sora-ios-sdk-2023.3.0 - [UPDATE] SwiftLint, SwiftFormat/CLI を一時的にコメントアウトする diff --git a/Podfile b/Podfile index 0810cbb..0800a34 100644 --- a/Podfile +++ b/Podfile @@ -5,7 +5,7 @@ platform :ios, '13.0' target 'SoraQuickStart' do use_frameworks! - pod 'Sora', :git => 'https://github.com/shiguredo/sora-ios-sdk.git', :branch => 'develop' + pod 'Sora', '2023.3.1' # SwiftLint, SwiftFormat/CLI が Swift 5.8 に対応していないため一時的にコメントアウトする # pod 'SwiftLint' # pod 'SwiftFormat/CLI'