summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.bumpversion.cfg2
-rw-r--r--CHANGES.rst20
-rw-r--r--changelog.d/3088.misc.rst1
-rw-r--r--changelog.d/3151.breaking.rst1
-rw-r--r--changelog.d/3153.change.rst1
-rw-r--r--changelog.d/3167.change.rst1
-rw-r--r--changelog.d/3247.misc.rst2
-rw-r--r--setup.cfg2
8 files changed, 22 insertions, 8 deletions
diff --git a/.bumpversion.cfg b/.bumpversion.cfg
index 87fa5350..5c2f2e45 100644
--- a/.bumpversion.cfg
+++ b/.bumpversion.cfg
@@ -1,5 +1,5 @@
[bumpversion]
-current_version = 61.3.1
+current_version = 62.0.0
commit = True
tag = True
diff --git a/CHANGES.rst b/CHANGES.rst
index 590f7766..126457be 100644
--- a/CHANGES.rst
+++ b/CHANGES.rst
@@ -1,3 +1,23 @@
+v62.0.0
+-------
+
+
+Breaking Changes
+^^^^^^^^^^^^^^^^
+* #3151: Made ``setup.py develop --user`` install to the user site packages directory even if it is disabled in the current interpreter.
+
+Changes
+^^^^^^^
+* #3153: When resolving requirements use both canonical and normalized names -- by :user:`ldaniluk`
+* #3167: Honor unix file mode in ZipFile when installing wheel via ``install_as_egg`` -- by :user:`delijati`
+
+Misc
+^^^^
+* #3088: Fixed duplicated tag with the ``dist-info`` command.
+* #3247: Fixed problem preventing ``readme`` specified as dynamic in ``pyproject.toml``
+ from being dynamically specified in ``setup.py``.
+
+
v61.3.1
-------
diff --git a/changelog.d/3088.misc.rst b/changelog.d/3088.misc.rst
deleted file mode 100644
index c507a824..00000000
--- a/changelog.d/3088.misc.rst
+++ /dev/null
@@ -1 +0,0 @@
-Fixed duplicated tag with the ``dist-info`` command.
diff --git a/changelog.d/3151.breaking.rst b/changelog.d/3151.breaking.rst
deleted file mode 100644
index 73f7c1a8..00000000
--- a/changelog.d/3151.breaking.rst
+++ /dev/null
@@ -1 +0,0 @@
-Made ``setup.py develop --user`` install to the user site packages directory even if it is disabled in the current interpreter.
diff --git a/changelog.d/3153.change.rst b/changelog.d/3153.change.rst
deleted file mode 100644
index d7e0755b..00000000
--- a/changelog.d/3153.change.rst
+++ /dev/null
@@ -1 +0,0 @@
-When resolving requirements use both canonical and normalized names -- by :user:`ldaniluk`
diff --git a/changelog.d/3167.change.rst b/changelog.d/3167.change.rst
deleted file mode 100644
index 5f44bec4..00000000
--- a/changelog.d/3167.change.rst
+++ /dev/null
@@ -1 +0,0 @@
-Honor unix file mode in ZipFile when installing wheel via ``install_as_egg`` -- by :user:`delijati`
diff --git a/changelog.d/3247.misc.rst b/changelog.d/3247.misc.rst
deleted file mode 100644
index b3fa121a..00000000
--- a/changelog.d/3247.misc.rst
+++ /dev/null
@@ -1,2 +0,0 @@
-Fixed problem preventing ``readme`` specified as dynamic in ``pyproject.toml``
-from being dynamically specified in ``setup.py``.
diff --git a/setup.cfg b/setup.cfg
index 4f84656d..78c088a1 100644
--- a/setup.cfg
+++ b/setup.cfg
@@ -1,6 +1,6 @@
[metadata]
name = setuptools
-version = 61.3.1
+version = 62.0.0
author = Python Packaging Authority
author_email = distutils-sig@python.org
description = Easily download, build, install, upgrade, and uninstall Python packages