summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.bumpversion.cfg2
-rw-r--r--CHANGES.rst6
-rw-r--r--changelog.d/2143.breaking.rst1
-rw-r--r--setup.cfg2
4 files changed, 8 insertions, 3 deletions
diff --git a/.bumpversion.cfg b/.bumpversion.cfg
index 88701727..bee22c9e 100644
--- a/.bumpversion.cfg
+++ b/.bumpversion.cfg
@@ -1,5 +1,5 @@
[bumpversion]
-current_version = 47.3.2
+current_version = 48.0.0
commit = True
tag = True
diff --git a/CHANGES.rst b/CHANGES.rst
index a8ddb657..d653d889 100644
--- a/CHANGES.rst
+++ b/CHANGES.rst
@@ -1,3 +1,9 @@
+v48.0.0
+-------
+
+* #2143: Setuptools adopts distutils from the Python 3.9 standard library and no longer depends on distutils in the standard library. When importing ``setuptools`` or ``setuptools.distutils_patch``, Setuptools will expose its bundled version as a top-level ``distutils`` package (and unload any previously-imported top-level distutils package), retaining the expectation that ``distutils``' objects are actually Setuptools objects. Although this change is not expected to break any use cases, it will likely affect tool chains that are monkey-patching distutils or relying on Setuptools' own monkey-patching of distutils.
+
+
v47.3.2
-------
diff --git a/changelog.d/2143.breaking.rst b/changelog.d/2143.breaking.rst
deleted file mode 100644
index 244a6989..00000000
--- a/changelog.d/2143.breaking.rst
+++ /dev/null
@@ -1 +0,0 @@
-Setuptools adopts distutils from the Python 3.9 standard library and no longer depends on distutils in the standard library. When importing ``setuptools`` or ``setuptools.distutils_patch``, Setuptools will expose its bundled version as a top-level ``distutils`` package (and unload any previously-imported top-level distutils package), retaining the expectation that ``distutils``' objects are actually Setuptools objects. Although this change is not expected to break any use cases, it will likely affect tool chains that are monkey-patching distutils or relying on Setuptools' own monkey-patching of distutils.
diff --git a/setup.cfg b/setup.cfg
index cd62393c..05638dbc 100644
--- a/setup.cfg
+++ b/setup.cfg
@@ -16,7 +16,7 @@ formats = zip
[metadata]
name = setuptools
-version = 47.3.2
+version = 48.0.0
description = Easily download, build, install, upgrade, and uninstall Python packages
author = Python Packaging Authority
author_email = distutils-sig@python.org