summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.bumpversion.cfg2
-rw-r--r--CHANGES.rst15
-rw-r--r--changelog.d/2962.misc.rst1
-rw-r--r--changelog.d/2974.change.rst1
-rw-r--r--changelog.d/2983.misc.rst1
-rw-r--r--changelog.d/2987.change.rst1
-rw-r--r--setup.cfg2
7 files changed, 17 insertions, 6 deletions
diff --git a/.bumpversion.cfg b/.bumpversion.cfg
index e607b2fc..f696b076 100644
--- a/.bumpversion.cfg
+++ b/.bumpversion.cfg
@@ -1,5 +1,5 @@
[bumpversion]
-current_version = 60.1.1
+current_version = 60.2.0
commit = True
tag = True
diff --git a/CHANGES.rst b/CHANGES.rst
index 554ee73e..59b29fb5 100644
--- a/CHANGES.rst
+++ b/CHANGES.rst
@@ -1,3 +1,18 @@
+v60.2.0
+-------
+
+
+Changes
+^^^^^^^
+* #2974: Setuptools now relies on the Python logging infrastructure to log messages. Instead of using ``distutils.log.*``, use ``logging.getLogger(name).*``.
+* #2987: Sync with pypa/distutils@2def21c5d74fdd2fe7996ee4030ac145a9d751bd, including fix for missing get_versions attribute (#2969), more reliance on sysconfig from stdlib.
+
+Misc
+^^^^
+* #2962: Avoid attempting to use local distutils when the presiding version of Setuptools on the path doesn't have one.
+* #2983: Restore 'add_shim' as the way to invoke the hook. Avoids compatibility issues between different versions of Setuptools with the distutils local implementation.
+
+
v60.1.1
-------
diff --git a/changelog.d/2962.misc.rst b/changelog.d/2962.misc.rst
deleted file mode 100644
index 5a553a77..00000000
--- a/changelog.d/2962.misc.rst
+++ /dev/null
@@ -1 +0,0 @@
-Avoid attempting to use local distutils when the presiding version of Setuptools on the path doesn't have one.
diff --git a/changelog.d/2974.change.rst b/changelog.d/2974.change.rst
deleted file mode 100644
index fcfa0049..00000000
--- a/changelog.d/2974.change.rst
+++ /dev/null
@@ -1 +0,0 @@
-Setuptools now relies on the Python logging infrastructure to log messages. Instead of using ``distutils.log.*``, use ``logging.getLogger(name).*``.
diff --git a/changelog.d/2983.misc.rst b/changelog.d/2983.misc.rst
deleted file mode 100644
index cc11f757..00000000
--- a/changelog.d/2983.misc.rst
+++ /dev/null
@@ -1 +0,0 @@
-Restore 'add_shim' as the way to invoke the hook. Avoids compatibility issues between different versions of Setuptools with the distutils local implementation.
diff --git a/changelog.d/2987.change.rst b/changelog.d/2987.change.rst
deleted file mode 100644
index 3b476eed..00000000
--- a/changelog.d/2987.change.rst
+++ /dev/null
@@ -1 +0,0 @@
-Sync with pypa/distutils@2def21c5d74fdd2fe7996ee4030ac145a9d751bd, including fix for missing get_versions attribute (#2969), more reliance on sysconfig from stdlib.
diff --git a/setup.cfg b/setup.cfg
index 9ae3e02c..75a41c84 100644
--- a/setup.cfg
+++ b/setup.cfg
@@ -1,6 +1,6 @@
[metadata]
name = setuptools
-version = 60.1.1
+version = 60.2.0
author = Python Packaging Authority
author_email = distutils-sig@python.org
description = Easily download, build, install, upgrade, and uninstall Python packages