aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--.bumpversion.cfg2
-rw-r--r--CHANGES.rst13
-rw-r--r--changelog.d/1905.change.rst1
-rw-r--r--changelog.d/1941.change.rst4
-rw-r--r--changelog.d/1968.misc.rst1
-rw-r--r--changelog.d/1981.change.rst1
-rw-r--r--changelog.d/1985.change.rst1
-rw-r--r--setup.cfg2
8 files changed, 15 insertions, 10 deletions
diff --git a/.bumpversion.cfg b/.bumpversion.cfg
index ef8a3877..8e86f31f 100644
--- a/.bumpversion.cfg
+++ b/.bumpversion.cfg
@@ -1,5 +1,5 @@
[bumpversion]
-current_version = 45.1.0
+current_version = 45.2.0
commit = True
tag = True
diff --git a/CHANGES.rst b/CHANGES.rst
index 198854fc..f97f5142 100644
--- a/CHANGES.rst
+++ b/CHANGES.rst
@@ -1,3 +1,16 @@
+v45.2.0
+-------
+
+* #1905: Fixed defect in _imp, introduced in 41.6.0 when the 'tests' directory is not present.
+* #1941: Improve editable installs with PEP 518 build isolation:
+
+ * The ``--user`` option is now always available. A warning is issued if the user site directory is not available.
+ * The error shown when the install directory is not in ``PYTHONPATH`` has been turned into a warning.
+* #1981: Setuptools now declares its ``tests`` and ``docs`` dependencies in metadata (extras).
+* #1985: Add support for installing scripts in environments where bdist_wininst is missing (i.e. Python 3.9).
+* #1968: Add flake8-2020 to check for misuse of sys.version or sys.version_info.
+
+
v45.1.0
-------
diff --git a/changelog.d/1905.change.rst b/changelog.d/1905.change.rst
deleted file mode 100644
index f0e07a18..00000000
--- a/changelog.d/1905.change.rst
+++ /dev/null
@@ -1 +0,0 @@
-Fixed defect in _imp, introduced in 41.6.0 when the 'tests' directory is not present.
diff --git a/changelog.d/1941.change.rst b/changelog.d/1941.change.rst
deleted file mode 100644
index a41cdcfe..00000000
--- a/changelog.d/1941.change.rst
+++ /dev/null
@@ -1,4 +0,0 @@
-Improve editable installs with PEP 518 build isolation:
-
-* The ``--user`` option is now always available. A warning is issued if the user site directory is not available.
-* The error shown when the install directory is not in ``PYTHONPATH`` has been turned into a warning.
diff --git a/changelog.d/1968.misc.rst b/changelog.d/1968.misc.rst
deleted file mode 100644
index 4aa5343f..00000000
--- a/changelog.d/1968.misc.rst
+++ /dev/null
@@ -1 +0,0 @@
-Add flake8-2020 to check for misuse of sys.version or sys.version_info.
diff --git a/changelog.d/1981.change.rst b/changelog.d/1981.change.rst
deleted file mode 100644
index c5713d9b..00000000
--- a/changelog.d/1981.change.rst
+++ /dev/null
@@ -1 +0,0 @@
-Setuptools now declares its ``tests`` and ``docs`` dependencies in metadata (extras).
diff --git a/changelog.d/1985.change.rst b/changelog.d/1985.change.rst
deleted file mode 100644
index 33698b88..00000000
--- a/changelog.d/1985.change.rst
+++ /dev/null
@@ -1 +0,0 @@
-Add support for installing scripts in environments where bdist_wininst is missing (i.e. Python 3.9).
diff --git a/setup.cfg b/setup.cfg
index bc34b22c..8cca6477 100644
--- a/setup.cfg
+++ b/setup.cfg
@@ -16,7 +16,7 @@ formats = zip
[metadata]
name = setuptools
-version = 45.1.0
+version = 45.2.0
description = Easily download, build, install, upgrade, and uninstall Python packages
author = Python Packaging Authority
author_email = distutils-sig@python.org