From 61a5a03fbf8acc59e6e12144011aa06b85162bda Mon Sep 17 00:00:00 2001 From: Anderson Bravalheri Date: Wed, 16 Oct 2024 11:04:49 +0100 Subject: [PATCH] =?UTF-8?q?Bump=20version:=2075.1.1=20=E2=86=92=2075.2.0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .bumpversion.cfg | 2 +- NEWS.rst | 17 +++++++++++++++++ newsfragments/4578.bugfix.rst | 1 - newsfragments/4578.feature.rst | 1 - newsfragments/4684.bugfix.rst | 2 -- pyproject.toml | 2 +- 6 files changed, 19 insertions(+), 6 deletions(-) delete mode 100644 newsfragments/4578.bugfix.rst delete mode 100644 newsfragments/4578.feature.rst delete mode 100644 newsfragments/4684.bugfix.rst diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 5247cca130..91921ce92d 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 75.1.1 +current_version = 75.2.0 commit = True tag = True diff --git a/NEWS.rst b/NEWS.rst index 75ef319dd5..e79b45a623 100644 --- a/NEWS.rst +++ b/NEWS.rst @@ -1,3 +1,20 @@ +v75.2.0 +======= + +Features +-------- + +- Made errors when parsing ``Distribution`` data more explicit about the expected type (``tuple[str, ...] | list[str]``) -- by :user:`Avasam` (#4578) + + +Bugfixes +-------- + +- Fix a `TypeError` when a ``Distribution``'s old included attribute was a `tuple` -- by :user:`Avasam` (#4578) +- Add workaround for ``bdist_wheel --dist-info-dir`` errors + when customisation does not inherit from setuptools. (#4684) + + v75.1.1 ======= diff --git a/newsfragments/4578.bugfix.rst b/newsfragments/4578.bugfix.rst deleted file mode 100644 index e9bde46269..0000000000 --- a/newsfragments/4578.bugfix.rst +++ /dev/null @@ -1 +0,0 @@ -Fix a `TypeError` when a ``Distribution``'s old included attribute was a `tuple` -- by :user:`Avasam` diff --git a/newsfragments/4578.feature.rst b/newsfragments/4578.feature.rst deleted file mode 100644 index 48f57edce3..0000000000 --- a/newsfragments/4578.feature.rst +++ /dev/null @@ -1 +0,0 @@ -Made errors when parsing ``Distribution`` data more explicit about the expected type (``tuple[str, ...] | list[str]``) -- by :user:`Avasam` diff --git a/newsfragments/4684.bugfix.rst b/newsfragments/4684.bugfix.rst deleted file mode 100644 index 40f554cccc..0000000000 --- a/newsfragments/4684.bugfix.rst +++ /dev/null @@ -1,2 +0,0 @@ -Add workaround for ``bdist_wheel --dist-info-dir`` errors -when customisation does not inherit from setuptools. diff --git a/pyproject.toml b/pyproject.toml index c27a988afd..bfa4d154a7 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -5,7 +5,7 @@ backend-path = ["."] [project] name = "setuptools" -version = "75.1.1" +version = "75.2.0" authors = [ { name = "Python Packaging Authority", email = "distutils-sig@python.org" }, ]