From 8e0b1846222f189b15c9fa1441fd961280f64437 Mon Sep 17 00:00:00 2001 From: miosakuma Date: Tue, 1 Aug 2023 18:02:59 +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 dca73e6..c99645e 100644 --- a/Podfile +++ b/Podfile @@ -5,7 +5,7 @@ platform :ios, '13.0' target 'SoraQuickStart' do use_frameworks! - pod 'Sora', '2023.2.0' + pod 'Sora', :git => 'https://github.com/shiguredo/sora-ios-sdk.git', :branch => 'develop' pod 'SwiftLint' pod 'SwiftFormat/CLI' From 5b79eedd9c2f57e58ba67ee109ffc3cb0b941234 Mon Sep 17 00:00:00 2001 From: miosakuma Date: Tue, 1 Aug 2023 18:31:08 +0900 Subject: [PATCH 2/5] =?UTF-8?q?Github=20Actions=20=E3=81=AE=E3=83=93?= =?UTF-8?q?=E3=83=AB=E3=83=89=E7=92=B0=E5=A2=83=E3=83=90=E3=83=BC=E3=82=B8?= =?UTF-8?q?=E3=83=A7=E3=83=B3=E3=82=A2=E3=83=83=E3=83=97?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/build.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index ac3711c..d1d95ef 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -11,10 +11,10 @@ on: jobs: build: - runs-on: macos-12 + runs-on: macos-13 env: - XCODE: /Applications/Xcode_14.0.app - XCODE_SDK: iphoneos16.0 + XCODE: /Applications/Xcode_14.3.1.app + XCODE_SDK: iphoneos16.2 steps: - uses: actions/checkout@v3 - name: Select Xcode Version From 8fa33ed590894a8f0db6e1c31ebd2bcf16aa5580 Mon Sep 17 00:00:00 2001 From: miosakuma Date: Fri, 8 Sep 2023 21:48:28 +0900 Subject: [PATCH 3/5] =?UTF-8?q?SwiftLint,=20SwiftFormat/CLI=20=E3=82=92?= =?UTF-8?q?=E4=B8=80=E6=99=82=E7=9A=84=E3=81=AB=E3=82=B3=E3=83=A1=E3=83=B3?= =?UTF-8?q?=E3=83=88=E3=82=A2=E3=82=A6=E3=83=88=E3=81=99=E3=82=8B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Podfile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Podfile b/Podfile index c99645e..0810cbb 100644 --- a/Podfile +++ b/Podfile @@ -6,7 +6,8 @@ platform :ios, '13.0' target 'SoraQuickStart' do use_frameworks! pod 'Sora', :git => 'https://github.com/shiguredo/sora-ios-sdk.git', :branch => 'develop' - pod 'SwiftLint' - pod 'SwiftFormat/CLI' +# SwiftLint, SwiftFormat/CLI が Swift 5.8 に対応していないため一時的にコメントアウトする +# pod 'SwiftLint' +# pod 'SwiftFormat/CLI' end From 377a88c71c6b76c76ef8d050371eeb537dc49ddd Mon Sep 17 00:00:00 2001 From: miosakuma Date: Mon, 11 Sep 2023 15:27:02 +0900 Subject: [PATCH 4/5] =?UTF-8?q?Github=20Actions=20=E3=81=AE=20iOS=20Versio?= =?UTF-8?q?n=20=E3=82=92=2016.4=20=E3=81=AB=E3=81=99=E3=82=8B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/build.yml | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index d1d95ef..d5871b0 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -14,7 +14,7 @@ jobs: runs-on: macos-13 env: XCODE: /Applications/Xcode_14.3.1.app - XCODE_SDK: iphoneos16.2 + XCODE_SDK: iphoneos16.4 steps: - uses: actions/checkout@v3 - name: Select Xcode Version @@ -51,9 +51,10 @@ jobs: CODE_SIGNING_ALLOWED=NO \ CODE_SIGN_IDENTITY= \ PROVISIONING_PROFILE= - - name: Check uncommitted unformatted code - run: | - ./lint-format.sh + # SwiftLint, SwiftFormat/CLI が Swift 5.8 に対応していないため一時的にコメントアウトする + #- name: Check uncommitted unformatted code + # run: | + # ./lint-format.sh release: if: contains(github.ref, 'tags/v') needs: [build] From 4fe9d77a25ce5ab8f4d41c4d4d3811061d611c45 Mon Sep 17 00:00:00 2001 From: miosakuma Date: Wed, 13 Sep 2023 12:19:00 +0900 Subject: [PATCH 5/5] =?UTF-8?q?Sora=20iOS=20SDK=202023.3.0=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 | 7 +++++++ Podfile | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/CHANGES.md b/CHANGES.md index 3788d5b..6703465 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -11,6 +11,13 @@ ## develop +## sora-ios-sdk-2023.3.0 + +- [UPDATE] SwiftLint, SwiftFormat/CLI を一時的にコメントアウトする + - SwiftLint, SwiftFormat/CLI が Swift Swift 5.9 に対応できていないため + - 対応が完了したら戻す + - @miosakuma + ## sora-ios-sdk-2023.2.0 - [UPDATE] システム条件を変更する diff --git a/Podfile b/Podfile index 0810cbb..d4925ba 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.0' # SwiftLint, SwiftFormat/CLI が Swift 5.8 に対応していないため一時的にコメントアウトする # pod 'SwiftLint' # pod 'SwiftFormat/CLI'