diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 9166a09130..5247cca130 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 75.1.0 +current_version = 75.1.1 commit = True tag = True diff --git a/NEWS.rst b/NEWS.rst index 313d6dfdc1..75ef319dd5 100644 --- a/NEWS.rst +++ b/NEWS.rst @@ -1,3 +1,16 @@ +v75.1.1 +======= + +Bugfixes +-------- + +- Re-use pre-existing ``.dist-info`` dir when creating wheels via the build backend APIs (PEP 517) and the ``metadata_directory`` argument is passed -- by :user:`pelson`. (#1825) +- Changed ``egg_info`` command to avoid adding an empty ``.egg-info`` directory + while iterating over entry-points. + This avoids triggering integration problems with ``importlib.metadata``/``importlib_metadata`` + (reference: pypa/pyproject-hooks#206). (#4680) + + v75.1.0 ======= diff --git a/newsfragments/1825.bugfix.rst b/newsfragments/1825.bugfix.rst deleted file mode 100644 index ff55d18725..0000000000 --- a/newsfragments/1825.bugfix.rst +++ /dev/null @@ -1 +0,0 @@ -Re-use pre-existing ``.dist-info`` dir when creating wheels via the build backend APIs (PEP 517) and the ``metadata_directory`` argument is passed -- by :user:`pelson`. diff --git a/newsfragments/4680.bugfix.rst b/newsfragments/4680.bugfix.rst deleted file mode 100644 index 71cb0d4322..0000000000 --- a/newsfragments/4680.bugfix.rst +++ /dev/null @@ -1,4 +0,0 @@ -Changed ``egg_info`` command to avoid adding an empty ``.egg-info`` directory -while iterating over entry-points. -This avoids triggering integration problems with ``importlib.metadata``/``importlib_metadata`` -(reference: pypa/pyproject-hooks#206). diff --git a/pyproject.toml b/pyproject.toml index 7c6cf36cbe..c27a988afd 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -5,7 +5,7 @@ backend-path = ["."] [project] name = "setuptools" -version = "75.1.0" +version = "75.1.1" authors = [ { name = "Python Packaging Authority", email = "distutils-sig@python.org" }, ]