From a43140ad5f3ad11761af7143658bdfb303d86701 Mon Sep 17 00:00:00 2001 From: Jakub Olejnik Date: Sat, 2 Apr 2022 00:14:15 +0200 Subject: [PATCH 1/2] =?UTF-8?q?=F0=9F=94=A7=20Use=20Xcode=2013.3=20on=20CI?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/build.yml | 2 +- .github/workflows/checks.yml | 2 +- .github/workflows/deploy.yml | 4 ++-- .github/workflows/tests.yml | 2 +- .github/xcode-version | 2 +- 5 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 3a109c2d..cf3d7ea3 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -6,7 +6,7 @@ on: [pull_request, push] jobs: carthage: name: Carthage - runs-on: macos-11 + runs-on: macos-12 steps: - uses: actions/checkout@v2 - uses: AckeeCZ/load-xcode-version@1.0 diff --git a/.github/workflows/checks.yml b/.github/workflows/checks.yml index c363df5d..c4543a7f 100644 --- a/.github/workflows/checks.yml +++ b/.github/workflows/checks.yml @@ -24,7 +24,7 @@ jobs: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} podspec: name: Podspec - runs-on: macos-11 + runs-on: macos-12 steps: - uses: actions/checkout@v2 - name: Install Bundler dependencies diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index d8cdc809..8f7faa96 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -8,7 +8,7 @@ on: jobs: carthage: name: Upload Carthage binary - runs-on: macos-11 + runs-on: macos-12 steps: - uses: actions/checkout@v2 - uses: AckeeCZ/load-xcode-version@1.0 @@ -31,7 +31,7 @@ jobs: draft: false cocoapods: name: Push podspec to Cocoapods trunk - runs-on: macos-11 + runs-on: macos-12 steps: - uses: actions/checkout@v2 - uses: AckeeCZ/load-xcode-version@1.0 diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 37280936..9f9a890d 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -5,7 +5,7 @@ on: [pull_request, push] jobs: tests: name: Run tests - runs-on: macos-11 + runs-on: macos-12 steps: - uses: actions/checkout@v2 - uses: AckeeCZ/load-xcode-version@1.0 diff --git a/.github/xcode-version b/.github/xcode-version index 16b080e5..e6ef6069 100644 --- a/.github/xcode-version +++ b/.github/xcode-version @@ -1 +1 @@ -13.2.1 \ No newline at end of file +13.3 \ No newline at end of file From 162b86092d5c5ad01cfc4b8ae5ddbc8e716f963a Mon Sep 17 00:00:00 2001 From: Jakub Olejnik Date: Thu, 26 May 2022 11:22:03 +0200 Subject: [PATCH 2/2] =?UTF-8?q?=F0=9F=94=A7=20Use=20Xcode=2013.4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/xcode-version | 2 +- CHANGELOG.md | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/xcode-version b/.github/xcode-version index e6ef6069..2c891c28 100644 --- a/.github/xcode-version +++ b/.github/xcode-version @@ -1 +1 @@ -13.3 \ No newline at end of file +13.4 \ No newline at end of file diff --git a/CHANGELOG.md b/CHANGELOG.md index 06e8836d..11c1b2e0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,7 @@ ``` ## Next +- Binary is built using Xcode 13.4 ([#125](https://github.com/AckeeCZ/ACKategories/pull/125), kudos to @olejnjak) - Add `projectedValue` to `UserDefault` property wrapper with `CurrentValueSubject` ([#124](https://github.com/AckeeCZ/ACKategories/pull/124), kudos to @olejnjak) - Fix navigation stack when managed by flow coordinators in non-linear hierarchy ([#123](https://github.com/AckeeCZ/ACKategories/pull/123), kudos to @olejnjak) - Add `flatMapLatest` extension to `Publisher`. ([#120](https://github.com/AckeeCZ/ACKategories/pull/120), kudos to @olejnjak)