summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJason R. Coombs <jaraco@jaraco.com>2021-10-22 16:15:32 -0400
committerJason R. Coombs <jaraco@jaraco.com>2021-10-22 16:15:32 -0400
commit4bce6d5a30accecc848d8e7f0dabd212bfea9475 (patch)
tree3aae1f5a5544ac472b16d782a0045e613072b4e0
parent391bb5d4d09c9eb8d6b2b98968e623455ae0a384 (diff)
downloadpython-setuptools-git-58.3.0.tar.gz
Bump version: 58.2.0 → 58.3.0v58.3.0
-rw-r--r--.bumpversion.cfg2
-rw-r--r--CHANGES.rst19
-rw-r--r--changelog.d/1988.change.rst2
-rw-r--r--changelog.d/2762.misc.rst2
-rw-r--r--changelog.d/2785.change.rst2
-rw-r--r--changelog.d/2823.change.rst1
-rw-r--r--changelog.d/917.change.rst1
-rw-r--r--setup.cfg2
8 files changed, 21 insertions, 10 deletions
diff --git a/.bumpversion.cfg b/.bumpversion.cfg
index 0ed35632..57793568 100644
--- a/.bumpversion.cfg
+++ b/.bumpversion.cfg
@@ -1,5 +1,5 @@
[bumpversion]
-current_version = 58.2.0
+current_version = 58.3.0
commit = True
tag = True
diff --git a/CHANGES.rst b/CHANGES.rst
index 0a002fe5..c8ecd1e5 100644
--- a/CHANGES.rst
+++ b/CHANGES.rst
@@ -1,3 +1,22 @@
+v58.3.0
+-------
+
+
+Changes
+^^^^^^^
+* #917: ``setup.py install`` and ``easy_install`` commands are now officially deprecated. Use other standards-based installers (like pip) and builders (like build). Workloads reliant on this behavior should pin to this major version of Setuptools.
+* #1988: Deprecated the ``bdist_rpm`` command. Binary packages should be built as wheels instead.
+ -- by :user:`hugovk`
+* #2785: Replace confirparser's readfp with read_file, deprecated since Python 3.2.
+ -- by :user:`hugovk`
+* #2823: Officially deprecated support for ``setup_requires``. Users are encouraged instead to migrate to PEP 518 ``build-system.requires`` in ``pyproject.toml``. Users reliant on ``setup_requires`` should consider pinning to this major version to avoid disruption.
+
+Misc
+^^^^
+* #2762: Changed codecov.yml to configure the threshold to be lower
+ -- by :user:`tanvimoharir`
+
+
v58.2.0
-------
diff --git a/changelog.d/1988.change.rst b/changelog.d/1988.change.rst
deleted file mode 100644
index 4f104639..00000000
--- a/changelog.d/1988.change.rst
+++ /dev/null
@@ -1,2 +0,0 @@
-Deprecated the ``bdist_rpm`` command. Binary packages should be built as wheels instead.
--- by :user:`hugovk`
diff --git a/changelog.d/2762.misc.rst b/changelog.d/2762.misc.rst
deleted file mode 100644
index cc9bf86c..00000000
--- a/changelog.d/2762.misc.rst
+++ /dev/null
@@ -1,2 +0,0 @@
-Changed codecov.yml to configure the threshold to be lower
--- by :user:`tanvimoharir`
diff --git a/changelog.d/2785.change.rst b/changelog.d/2785.change.rst
deleted file mode 100644
index 7e9631b7..00000000
--- a/changelog.d/2785.change.rst
+++ /dev/null
@@ -1,2 +0,0 @@
-Replace confirparser's readfp with read_file, deprecated since Python 3.2.
--- by :user:`hugovk`
diff --git a/changelog.d/2823.change.rst b/changelog.d/2823.change.rst
deleted file mode 100644
index 69db4c0d..00000000
--- a/changelog.d/2823.change.rst
+++ /dev/null
@@ -1 +0,0 @@
-Officially deprecated support for ``setup_requires``. Users are encouraged instead to migrate to PEP 518 ``build-system.requires`` in ``pyproject.toml``. Users reliant on ``setup_requires`` should consider pinning to this major version to avoid disruption.
diff --git a/changelog.d/917.change.rst b/changelog.d/917.change.rst
deleted file mode 100644
index a2d3f7b8..00000000
--- a/changelog.d/917.change.rst
+++ /dev/null
@@ -1 +0,0 @@
-``setup.py install`` and ``easy_install`` commands are now officially deprecated. Use other standards-based installers (like pip) and builders (like build). Workloads reliant on this behavior should pin to this major version of Setuptools.
diff --git a/setup.cfg b/setup.cfg
index d7236be6..65c9479c 100644
--- a/setup.cfg
+++ b/setup.cfg
@@ -1,6 +1,6 @@
[metadata]
name = setuptools
-version = 58.2.0
+version = 58.3.0
author = Python Packaging Authority
author_email = distutils-sig@python.org
description = Easily download, build, install, upgrade, and uninstall Python packages