summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJason R. Coombs <jaraco@jaraco.com>2022-07-13 18:06:55 -0400
committerJason R. Coombs <jaraco@jaraco.com>2022-07-13 18:06:55 -0400
commitf747e8bca333a45aaf7fbc58fa1ce12c663bebe3 (patch)
tree7e61cc334572f3bc8f586185a85ba82d7cf6c874
parentb1353f7e0dd345d799c3e3133daee687871b30e5 (diff)
downloadpython-setuptools-git-f747e8bca333a45aaf7fbc58fa1ce12c663bebe3.tar.gz
Bump version: 63.1.0 → 63.2.0v63.2.0
-rw-r--r--.bumpversion.cfg2
-rw-r--r--CHANGES.rst14
-rw-r--r--changelog.d/3395.change.rst2
-rw-r--r--changelog.d/3435.misc.rst1
-rw-r--r--setup.cfg2
5 files changed, 16 insertions, 5 deletions
diff --git a/.bumpversion.cfg b/.bumpversion.cfg
index 284f7c1e..bcbe8935 100644
--- a/.bumpversion.cfg
+++ b/.bumpversion.cfg
@@ -1,5 +1,5 @@
[bumpversion]
-current_version = 63.1.0
+current_version = 63.2.0
commit = True
tag = True
diff --git a/CHANGES.rst b/CHANGES.rst
index c85d6dc9..6a9f0b23 100644
--- a/CHANGES.rst
+++ b/CHANGES.rst
@@ -1,3 +1,17 @@
+v63.2.0
+-------
+
+
+Changes
+^^^^^^^
+* #3395: Included a performance optimization: ``setuptools.build_meta`` no longer tries
+ to :func:`compile` the setup script code before :func:`exec`-ing it.
+
+Misc
+^^^^
+* #3435: Corrected issue in macOS framework builds on Python 3.9 not installed by homebrew (pypa/distutils#158).
+
+
v63.1.0
-------
diff --git a/changelog.d/3395.change.rst b/changelog.d/3395.change.rst
deleted file mode 100644
index f4947074..00000000
--- a/changelog.d/3395.change.rst
+++ /dev/null
@@ -1,2 +0,0 @@
-Included a performance optimization: ``setuptools.build_meta`` no longer tries
-to :func:`compile` the setup script code before :func:`exec`-ing it.
diff --git a/changelog.d/3435.misc.rst b/changelog.d/3435.misc.rst
deleted file mode 100644
index 82780290..00000000
--- a/changelog.d/3435.misc.rst
+++ /dev/null
@@ -1 +0,0 @@
-Corrected issue in macOS framework builds on Python 3.9 not installed by homebrew (pypa/distutils#158).
diff --git a/setup.cfg b/setup.cfg
index 65c87768..9c30b35d 100644
--- a/setup.cfg
+++ b/setup.cfg
@@ -1,6 +1,6 @@
[metadata]
name = setuptools
-version = 63.1.0
+version = 63.2.0
author = Python Packaging Authority
author_email = distutils-sig@python.org
description = Easily download, build, install, upgrade, and uninstall Python packages