summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJason R. Coombs <jaraco@jaraco.com>2021-02-28 16:47:11 -0500
committerJason R. Coombs <jaraco@jaraco.com>2021-02-28 16:47:11 -0500
commitf07e7ea59a484f4e7c2d5c8c6def50c836af334a (patch)
tree2fd4c812a81004bb2617a916eb9d266d38809fb1
parent341972d1c1e804361e3b910e4e564a5da77bfa34 (diff)
downloadpython-setuptools-git-54.0.0.tar.gz
Bump version: 53.1.0 → 54.0.0v54.0.0
-rw-r--r--.bumpversion.cfg2
-rw-r--r--CHANGES.rst18
-rw-r--r--changelog.d/1932.change.rst1
-rw-r--r--changelog.d/2553.doc.rst1
-rw-r--r--changelog.d/2570.change.rst1
-rw-r--r--changelog.d/2582.breaking.rst1
-rw-r--r--setup.cfg2
7 files changed, 20 insertions, 6 deletions
diff --git a/.bumpversion.cfg b/.bumpversion.cfg
index a408627e..25490e49 100644
--- a/.bumpversion.cfg
+++ b/.bumpversion.cfg
@@ -1,5 +1,5 @@
[bumpversion]
-current_version = 53.1.0
+current_version = 54.0.0
commit = True
tag = True
diff --git a/CHANGES.rst b/CHANGES.rst
index 864ee105..62f911aa 100644
--- a/CHANGES.rst
+++ b/CHANGES.rst
@@ -1,3 +1,21 @@
+v54.0.0
+-------
+
+
+Breaking Changes
+^^^^^^^^^^^^^^^^
+* #2582: Simplified build-from-source story by providing bootstrapping metadata in a separate egg-info directory. Build requirements no longer include setuptools itself. Sdist once again includes the pyproject.toml. Project can no longer be installed from source on pip 19.x, but install from source is still supported on pip < 19 and pip >= 20 and install from wheel is still supported with pip >= 9.
+
+Changes
+^^^^^^^
+* #1932: Handled :code:`AttributeError` by raising :code:`DistutilsSetupError` in :code:`dist.check_specifier()` when specifier is not a string -- by :user:`melissa-kun-li`
+* #2570: Correctly parse cmdclass in setup.cfg.
+
+Documentation changes
+^^^^^^^^^^^^^^^^^^^^^
+* #2553: Added userguide example for markers in extras_require -- by :user:`pwoolvett`
+
+
v53.1.0
-------
diff --git a/changelog.d/1932.change.rst b/changelog.d/1932.change.rst
deleted file mode 100644
index a7af5b72..00000000
--- a/changelog.d/1932.change.rst
+++ /dev/null
@@ -1 +0,0 @@
-Handled :code:`AttributeError` by raising :code:`DistutilsSetupError` in :code:`dist.check_specifier()` when specifier is not a string -- by :user:`melissa-kun-li` \ No newline at end of file
diff --git a/changelog.d/2553.doc.rst b/changelog.d/2553.doc.rst
deleted file mode 100644
index fa03329a..00000000
--- a/changelog.d/2553.doc.rst
+++ /dev/null
@@ -1 +0,0 @@
-Added userguide example for markers in extras_require -- by :user:`pwoolvett`
diff --git a/changelog.d/2570.change.rst b/changelog.d/2570.change.rst
deleted file mode 100644
index 165089ed..00000000
--- a/changelog.d/2570.change.rst
+++ /dev/null
@@ -1 +0,0 @@
-Correctly parse cmdclass in setup.cfg.
diff --git a/changelog.d/2582.breaking.rst b/changelog.d/2582.breaking.rst
deleted file mode 100644
index 908ababe..00000000
--- a/changelog.d/2582.breaking.rst
+++ /dev/null
@@ -1 +0,0 @@
-Simplified build-from-source story by providing bootstrapping metadata in a separate egg-info directory. Build requirements no longer include setuptools itself. Sdist once again includes the pyproject.toml. Project can no longer be installed from source on pip 19.x, but install from source is still supported on pip < 19 and pip >= 20 and install from wheel is still supported with pip >= 9.
diff --git a/setup.cfg b/setup.cfg
index 7adf8569..d60a9b26 100644
--- a/setup.cfg
+++ b/setup.cfg
@@ -2,7 +2,7 @@
license_files =
LICENSE
name = setuptools
-version = 53.1.0
+version = 54.0.0
author = Python Packaging Authority
author_email = distutils-sig@python.org
description = Easily download, build, install, upgrade, and uninstall Python packages