Skip to content

Commit 729d24d

Browse files
committed
merge bitcoin#33489: Drop support for EOL macOS 13
1 parent dcf76ba commit 729d24d

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

contrib/devtools/symbol-check.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -244,7 +244,7 @@ def check_MACHO_libraries(binary) -> bool:
244244
return ok
245245

246246
def check_MACHO_min_os(binary) -> bool:
247-
if binary.build_version.minos == [13,0,0]:
247+
if binary.build_version.minos == [14,0,0]:
248248
return True
249249
return False
250250

depends/hosts/darwin.mk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
OSX_MIN_VERSION=13.0
1+
OSX_MIN_VERSION=14.0
22
OSX_SDK_VERSION=14.0
33
XCODE_VERSION=15.0
44
XCODE_BUILD_ID=15A240d

doc/release-notes-empty-template.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ likely require a reindex.
3232
# Compatibility
3333

3434
Dash Core is supported and tested on operating systems using the
35-
Linux Kernel 3.17+, macOS 13+, and Windows 10+. Dash Core
35+
Linux Kernel 3.17+, macOS 14+, and Windows 10+. Dash Core
3636
should also work on most other Unix-like systems but is not as
3737
frequently tested on them. It is not recommended to use Dash Core on
3838
unsupported systems.

share/qt/Info.plist.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<plist version="0.9">
44
<dict>
55
<key>LSMinimumSystemVersion</key>
6-
<string>13</string>
6+
<string>14</string>
77

88
<key>LSArchitecturePriority</key>
99
<array>

src/test/fuzz/fuzz.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ auto& FuzzTargets()
6969

7070
void FuzzFrameworkRegisterTarget(std::string_view name, TypeTestOneInput target, FuzzTargetOptions opts)
7171
{
72-
const auto [it, ins]{FuzzTargets().try_emplace(name, FuzzTarget /* temporary can be dropped after Apple-Clang-16 ? */ {std::move(target), std::move(opts)})};
72+
const auto [it, ins]{FuzzTargets().try_emplace(name, std::move(target), std::move(opts))};
7373
Assert(ins);
7474
}
7575

0 commit comments

Comments
 (0)