summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.bumpversion.cfg2
-rw-r--r--CHANGES.rst23
-rw-r--r--changelog.d/3305.doc.rst1
-rw-r--r--changelog.d/3394.doc.rst3
-rw-r--r--changelog.d/3397.doc.rst3
-rw-r--r--changelog.d/3402.doc.rst1
-rw-r--r--changelog.d/3421.breaking.rst4
-rw-r--r--setup.cfg2
8 files changed, 25 insertions, 14 deletions
diff --git a/.bumpversion.cfg b/.bumpversion.cfg
index f90cdd5e..0c090c70 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 b8ec83ce..eeab4a2f 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 39006ff0..00000000
--- 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 ea3702bf..00000000
--- 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 933fc34d..00000000
--- 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 e88ac1f5..00000000
--- 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 003e6d33..00000000
--- 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 b8cb0407..f22457aa 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