From: Martinus Verburg <12513894+codeskipper@users.noreply.github.com> Date: Thu, 7 May 2026 03:07:17 +0000 (+0200) Subject: gh-142295: Update CFBundleShortVersionString in Mac framework Info.plist (#143064) X-Git-Tag: v3.15.0b1~6 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=65ed109b5de7bab28f1051336f0ae312205c4233;p=thirdparty%2FPython%2Fcpython.git 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. --- 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.