From d08001e78c20049650e1e6ed65abb4d3a87e10f9 Mon Sep 17 00:00:00 2001 From: Davide De Rosa Date: Tue, 17 May 2022 18:07:26 +0200 Subject: [PATCH] Bump versions - Release version - CI to macOS 12 - iOS Simulator/Catalyst target to 14 --- .github/workflows/release.yml | 2 +- .version | 2 +- config/20-all-platforms.conf | 6 +++--- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 9bfd33b..8d323dd 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -9,7 +9,7 @@ on: jobs: publish_binary_release: - runs-on: macos-11 + runs-on: macos-12 steps: - uses: actions/checkout@v2 - name: Build OpenSSL diff --git a/.version b/.version index c854b55..06dd613 100644 --- a/.version +++ b/.version @@ -1 +1 @@ -1.1.1m-0 +1.1.1m-1 diff --git a/config/20-all-platforms.conf b/config/20-all-platforms.conf index 6384e83..265e371 100644 --- a/config/20-all-platforms.conf +++ b/config/20-all-platforms.conf @@ -67,7 +67,7 @@ my %targets = (); }, "ios-sim-cross-arm64" => { inherit_from => [ "darwin64-arm64-cc", "ios-cross-base" ], - cflags => add("-target arm64-apple-ios13.0-simulator -mios-version-min=13.0"), + cflags => add("-target arm64-apple-ios14.0-simulator -mios-version-min=14.0"), sys_id => "iOS", }, @@ -83,12 +83,12 @@ my %targets = (); # Catalyst "mac-catalyst-x86_64" => { inherit_from => [ "darwin64-x86_64-cc", "mac-catalyst-base" ], - cflags => add("-target x86_64-apple-ios13.0-macabi -mios-version-min=13.0"), + cflags => add("-target x86_64-apple-ios14.0-macabi -mios-version-min=14.0"), sys_id => "MacOSX", }, "mac-catalyst-arm64" => { inherit_from => [ "darwin64-arm64-cc", "mac-catalyst-base" ], - cflags => add("-target arm64-apple-ios13.0-macabi -mios-version-min=13.0"), + cflags => add("-target arm64-apple-ios14.0-macabi -mios-version-min=14.0"), sys_id => "MacOSX", },