From edaf14a126f419213321032a7eb64ae4d660ab6f Mon Sep 17 00:00:00 2001 From: Benoit Pierre Date: Mon, 4 Jul 2022 00:05:57 +0200 Subject: [PATCH] =?UTF-8?q?Bump=20version:=2062.6.0=20=E2=86=92=2063.0.0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .bumpversion.cfg | 2 +- CHANGES.rst | 23 +++++++++++++++++++++++ changelog.d/3305.doc.rst | 1 - changelog.d/3394.doc.rst | 3 --- changelog.d/3397.doc.rst | 3 --- changelog.d/3402.doc.rst | 1 - changelog.d/3421.breaking.rst | 4 ---- setup.cfg | 2 +- 8 files changed, 25 insertions(+), 14 deletions(-) delete mode 100644 changelog.d/3305.doc.rst delete mode 100644 changelog.d/3394.doc.rst delete mode 100644 changelog.d/3397.doc.rst delete mode 100644 changelog.d/3402.doc.rst delete mode 100644 changelog.d/3421.breaking.rst diff --git a/.bumpversion.cfg b/.bumpversion.cfg index f90cdd5ebc..0c090c7053 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 62.6.0 +current_version = 63.0.0 commit = True tag = True diff --git a/CHANGES.rst b/CHANGES.rst index b8ec83ce4d..eeab4a2f3e 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,3 +1,26 @@ +v63.0.0 +------- + + +Breaking Changes +^^^^^^^^^^^^^^^^ +* #3421: Drop setuptools' support for installing an entrypoint extra requirements at load time: + - the functionality has been broken since v60.8.0. + - the mechanism to do so is deprecated (`fetch_build_eggs`). + - that use case (e.g. a custom command class entrypoint) is covered by making sure the necessary build requirements are declared. + +Documentation changes +^^^^^^^^^^^^^^^^^^^^^ +* #3305: Updated the example pyproject.toml -- by :user:`jacalata` +* #3394: This updates the documentation for the ``file_finders`` hook so that + the logging recommendation aligns with the suggestion to not use + ``distutils`` directly. +* #3397: Fix reference for ``keywords`` to point to the Core Metadata Specification + instead of PEP 314 (the live standard is kept always up-to-date and + consolidates several PEPs together in a single document). +* #3402: Reordered the User Guide's Table of Contents -- by :user:`codeandfire` + + v62.6.0 ------- diff --git a/changelog.d/3305.doc.rst b/changelog.d/3305.doc.rst deleted file mode 100644 index 39006ff0ad..0000000000 --- a/changelog.d/3305.doc.rst +++ /dev/null @@ -1 +0,0 @@ -Updated the example pyproject.toml -- by :user:`jacalata` diff --git a/changelog.d/3394.doc.rst b/changelog.d/3394.doc.rst deleted file mode 100644 index ea3702bf80..0000000000 --- a/changelog.d/3394.doc.rst +++ /dev/null @@ -1,3 +0,0 @@ -This updates the documentation for the ``file_finders`` hook so that -the logging recommendation aligns with the suggestion to not use -``distutils`` directly. diff --git a/changelog.d/3397.doc.rst b/changelog.d/3397.doc.rst deleted file mode 100644 index 933fc34de5..0000000000 --- a/changelog.d/3397.doc.rst +++ /dev/null @@ -1,3 +0,0 @@ -Fix reference for ``keywords`` to point to the Core Metadata Specification -instead of PEP 314 (the live standard is kept always up-to-date and -consolidates several PEPs together in a single document). diff --git a/changelog.d/3402.doc.rst b/changelog.d/3402.doc.rst deleted file mode 100644 index e88ac1f52a..0000000000 --- a/changelog.d/3402.doc.rst +++ /dev/null @@ -1 +0,0 @@ -Reordered the User Guide's Table of Contents -- by :user:`codeandfire` diff --git a/changelog.d/3421.breaking.rst b/changelog.d/3421.breaking.rst deleted file mode 100644 index 003e6d33f7..0000000000 --- a/changelog.d/3421.breaking.rst +++ /dev/null @@ -1,4 +0,0 @@ -Drop setuptools' support for installing an entrypoint extra requirements at load time: -- the functionality has been broken since v60.8.0. -- the mechanism to do so is deprecated (`fetch_build_eggs`). -- that use case (e.g. a custom command class entrypoint) is covered by making sure the necessary build requirements are declared. diff --git a/setup.cfg b/setup.cfg index b8cb0407a4..f22457aa0d 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,6 +1,6 @@ [metadata] name = setuptools -version = 62.6.0 +version = 63.0.0 author = Python Packaging Authority author_email = distutils-sig@python.org description = Easily download, build, install, upgrade, and uninstall Python packages