From 65ed109b5de7bab28f1051336f0ae312205c4233 Mon Sep 17 00:00:00 2001 From: Martinus Verburg <12513894+codeskipper@users.noreply.github.com> Date: Thu, 7 May 2026 05:07:17 +0200 Subject: [PATCH] gh-142295: Update CFBundleShortVersionString in Mac framework Info.plist (#143064) Updated macOS framework Info.plist to use x.y.z format for CFBundleShortVersionString to comply with Apple guidelines. Patch contributed by Martinus Verburg. --- Mac/Resources/framework/Info.plist.in | 2 +- .../next/macOS/2025-12-22-10-53-45.gh-issue-142295.fLu-Lh.rst | 3 +++ 2 files changed, 4 insertions(+), 1 deletion(-) create mode 100644 Misc/NEWS.d/next/macOS/2025-12-22-10-53-45.gh-issue-142295.fLu-Lh.rst diff --git a/Mac/Resources/framework/Info.plist.in b/Mac/Resources/framework/Info.plist.in index 4c42971ed90e..06b4c428fd46 100644 --- a/Mac/Resources/framework/Info.plist.in +++ b/Mac/Resources/framework/Info.plist.in @@ -17,7 +17,7 @@ CFBundlePackageType FMWK CFBundleShortVersionString - %VERSION%, (c) 2001-2024 Python Software Foundation. + %VERSION% CFBundleLongVersionString %VERSION%, (c) 2001-2024 Python Software Foundation. CFBundleSignature diff --git a/Misc/NEWS.d/next/macOS/2025-12-22-10-53-45.gh-issue-142295.fLu-Lh.rst b/Misc/NEWS.d/next/macOS/2025-12-22-10-53-45.gh-issue-142295.fLu-Lh.rst new file mode 100644 index 000000000000..fa5d1ab8a525 --- /dev/null +++ b/Misc/NEWS.d/next/macOS/2025-12-22-10-53-45.gh-issue-142295.fLu-Lh.rst @@ -0,0 +1,3 @@ +Mac framework Info.plist CFBundleShortVersionString now uses x.y.z only +format to comply with `this Apple developer guideline +`_. Contributed by Martinus Verburg. -- 2.47.3