summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.bumpversion.cfg2
-rw-r--r--CHANGES.rst28
-rw-r--r--changelog.d/2628.change.rst1
-rw-r--r--changelog.d/2645.breaking.rst3
-rw-r--r--changelog.d/2645.change.rst4
-rw-r--r--changelog.d/2650.misc.rst3
-rw-r--r--changelog.d/2678.change.rst1
-rw-r--r--changelog.d/2680.change.rst1
-rw-r--r--changelog.d/2681.change.rst1
-rw-r--r--setup.cfg2
10 files changed, 30 insertions, 16 deletions
diff --git a/.bumpversion.cfg b/.bumpversion.cfg
index 036117a5..672897ef 100644
--- a/.bumpversion.cfg
+++ b/.bumpversion.cfg
@@ -1,5 +1,5 @@
[bumpversion]
-current_version = 56.2.0
+current_version = 57.0.0
commit = True
tag = True
diff --git a/CHANGES.rst b/CHANGES.rst
index 60adfd3d..416ad89a 100644
--- a/CHANGES.rst
+++ b/CHANGES.rst
@@ -1,3 +1,31 @@
+v57.0.0
+-------
+
+
+Breaking Changes
+^^^^^^^^^^^^^^^^
+* #2645: License files excluded via the ``MANIFEST.in`` but matched by either
+ the ``license_file`` (deprecated) or ``license_files`` options,
+ will be nevertheless included in the source distribution. - by :user:`cdce8p`
+
+Changes
+^^^^^^^
+* #2628: Write long description in message payload of PKG-INFO file. - by :user:`cdce8p`
+* #2645: Added ``License-File`` (multiple) to the output package metadata.
+ The field will contain the path of a license file, matched by the
+ ``license_file`` (deprecated) and ``license_files`` options,
+ relative to ``.dist-info``. - by :user:`cdce8p`
+* #2678: Moved Setuptools' own entry points into declarative config.
+* #2680: Vendored `more_itertools <https://pypi.org/project/more-itertools>`_ for Setuptools.
+* #2681: Setuptools own setup.py no longer declares setup_requires, but instead expects wheel to be installed as declared by pyproject.toml.
+
+Misc
+^^^^
+* #2650: Updated the docs build tooling to support the latest version of
+ Towncrier and show the previews of not-yet-released setuptools versions
+ in the changelog -- :user:`webknjaz`
+
+
v56.2.0
-------
diff --git a/changelog.d/2628.change.rst b/changelog.d/2628.change.rst
deleted file mode 100644
index 53619f89..00000000
--- a/changelog.d/2628.change.rst
+++ /dev/null
@@ -1 +0,0 @@
-Write long description in message payload of PKG-INFO file. - by :user:`cdce8p`
diff --git a/changelog.d/2645.breaking.rst b/changelog.d/2645.breaking.rst
deleted file mode 100644
index b96b492a..00000000
--- a/changelog.d/2645.breaking.rst
+++ /dev/null
@@ -1,3 +0,0 @@
-License files excluded via the ``MANIFEST.in`` but matched by either
-the ``license_file`` (deprecated) or ``license_files`` options,
-will be nevertheless included in the source distribution. - by :user:`cdce8p`
diff --git a/changelog.d/2645.change.rst b/changelog.d/2645.change.rst
deleted file mode 100644
index b22385c1..00000000
--- a/changelog.d/2645.change.rst
+++ /dev/null
@@ -1,4 +0,0 @@
-Added ``License-File`` (multiple) to the output package metadata.
-The field will contain the path of a license file, matched by the
-``license_file`` (deprecated) and ``license_files`` options,
-relative to ``.dist-info``. - by :user:`cdce8p`
diff --git a/changelog.d/2650.misc.rst b/changelog.d/2650.misc.rst
deleted file mode 100644
index f15ec3d8..00000000
--- a/changelog.d/2650.misc.rst
+++ /dev/null
@@ -1,3 +0,0 @@
-Updated the docs build tooling to support the latest version of
-Towncrier and show the previews of not-yet-released setuptools versions
-in the changelog -- :user:`webknjaz`
diff --git a/changelog.d/2678.change.rst b/changelog.d/2678.change.rst
deleted file mode 100644
index 529c58ad..00000000
--- a/changelog.d/2678.change.rst
+++ /dev/null
@@ -1 +0,0 @@
-Moved Setuptools' own entry points into declarative config.
diff --git a/changelog.d/2680.change.rst b/changelog.d/2680.change.rst
deleted file mode 100644
index 177874be..00000000
--- a/changelog.d/2680.change.rst
+++ /dev/null
@@ -1 +0,0 @@
-Vendored `more_itertools <https://pypi.org/project/more-itertools>`_ for Setuptools.
diff --git a/changelog.d/2681.change.rst b/changelog.d/2681.change.rst
deleted file mode 100644
index e6c66dbe..00000000
--- a/changelog.d/2681.change.rst
+++ /dev/null
@@ -1 +0,0 @@
-Setuptools own setup.py no longer declares setup_requires, but instead expects wheel to be installed as declared by pyproject.toml.
diff --git a/setup.cfg b/setup.cfg
index 417026db..ff506b8d 100644
--- a/setup.cfg
+++ b/setup.cfg
@@ -2,7 +2,7 @@
license_files =
LICENSE
name = setuptools
-version = 56.2.0
+version = 57.0.0
author = Python Packaging Authority
author_email = distutils-sig@python.org
description = Easily download, build, install, upgrade, and uninstall Python packages