From bf2ced2a61833915a307c73405da99b6408154c7 Mon Sep 17 00:00:00 2001 From: Anderson Bravalheri Date: Wed, 20 Nov 2024 17:50:09 +0000 Subject: [PATCH] =?UTF-8?q?Bump=20version:=2075.5.0=20=E2=86=92=2075.6.0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .bumpversion.cfg | 2 +- NEWS.rst | 12 ++++++++++++ newsfragments/4701.feature.rst | 3 --- newsfragments/4754.feature.rst | 1 - pyproject.toml | 2 +- 5 files changed, 14 insertions(+), 6 deletions(-) delete mode 100644 newsfragments/4701.feature.rst delete mode 100644 newsfragments/4754.feature.rst diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 71f8813923..e21bc31417 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 75.5.0 +current_version = 75.6.0 commit = True tag = True diff --git a/NEWS.rst b/NEWS.rst index 25dac78e1d..326fdac650 100644 --- a/NEWS.rst +++ b/NEWS.rst @@ -1,3 +1,15 @@ +v75.6.0 +======= + +Features +-------- + +- Preserve original ``PKG-INFO`` into ``METADATA`` when creating wheel + (instead of calling ``wheel.metadata.pkginfo_to_metadata``). + This helps to be more compliant with the flow specified in PEP 517. (#4701) +- Changed the ``WindowsSdkVersion``, ``FrameworkVersion32`` and ``FrameworkVersion64`` properties of ``setuptools.msvc.PlatformInfo`` to return an empty `tuple` instead of `None` as a fallthrough case -- by :user:`Avasam` (#4754) + + v75.5.0 ======= diff --git a/newsfragments/4701.feature.rst b/newsfragments/4701.feature.rst deleted file mode 100644 index 2ee6cb1226..0000000000 --- a/newsfragments/4701.feature.rst +++ /dev/null @@ -1,3 +0,0 @@ -Preserve original ``PKG-INFO`` into ``METADATA`` when creating wheel -(instead of calling ``wheel.metadata.pkginfo_to_metadata``). -This helps to be more compliant with the flow specified in PEP 517. diff --git a/newsfragments/4754.feature.rst b/newsfragments/4754.feature.rst deleted file mode 100644 index 2a46935eea..0000000000 --- a/newsfragments/4754.feature.rst +++ /dev/null @@ -1 +0,0 @@ -Changed the ``WindowsSdkVersion``, ``FrameworkVersion32`` and ``FrameworkVersion64`` properties of ``setuptools.msvc.PlatformInfo`` to return an empty `tuple` instead of `None` as a fallthrough case -- by :user:`Avasam` diff --git a/pyproject.toml b/pyproject.toml index 60ea8661b3..ff1e730dd7 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -5,7 +5,7 @@ backend-path = ["."] [project] name = "setuptools" -version = "75.5.0" +version = "75.6.0" authors = [ { name = "Python Packaging Authority", email = "distutils-sig@python.org" }, ]