diff options
| author | Zousar Shaker <[email protected]> | 2025-04-04 02:20:11 -0600 |
|---|---|---|
| committer | GitHub Enterprise <[email protected]> | 2025-04-04 10:20:11 +0200 |
| commit | 351a7befa926741f30d96a9540c7314592c1f0a8 (patch) | |
| tree | 5d61d641062b0beb851fec330cbf26a3c220d0d1 | |
| parent | build store save access times (#341) (diff) | |
| download | zen-351a7befa926741f30d96a9540c7314592c1f0a8.tar.xz zen-351a7befa926741f30d96a9540c7314592c1f0a8.zip | |
Zs/mac restore minver 12.5 (#344)
* Restore Mac minver to 12.5
| -rw-r--r-- | CHANGELOG.md | 1 | ||||
| -rw-r--r-- | VERSION.txt | 2 | ||||
| -rw-r--r-- | scripts/bundle.lua | 4 |
3 files changed, 4 insertions, 3 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index 1d0f39a78..cfed4d3ae 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,6 @@ ## - Feature: `zen oplog-export`, `zen oplog-import` for `--url` (cloud) and `--builds` (builds) option now has `--oidctoken-exe-path` to let zen run the OidcToken executable to get and refresh authentication token +- Bugfix: Restore Mac minver back to 12.5 ## 5.6.2 - Bugfix: Changed Mac minver from 12.5 to 14.0, and removed `_LIBCPP_DISABLE_AVAILABILITY` as a define on Mac due to executable incompatibility issues diff --git a/VERSION.txt b/VERSION.txt index d6a86bf43..577d7489f 100644 --- a/VERSION.txt +++ b/VERSION.txt @@ -1 +1 @@ -5.6.2 +5.6.3-pre0 diff --git a/scripts/bundle.lua b/scripts/bundle.lua index 3ca9b7ae4..1a81c9b7f 100644 --- a/scripts/bundle.lua +++ b/scripts/bundle.lua @@ -214,8 +214,8 @@ end -------------------------------------------------------------------------------- local function main_mac(signidentity) -- Build and universalify - _build("x86_64", false, "--target_minver=14.0") - _build("arm64", false, "--target_minver=14.0") + _build("x86_64", false, "--target_minver=12.5") + _build("arm64", false, "--target_minver=12.5") os.mkdir("build/macosx/universal/release/") local ret = _exec( |