diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 284f7c1ecb..bcbe893532 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 c85d6dc9e1..6a9f0b23a3 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 f49470742f..0000000000 --- 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 8278029043..0000000000 --- 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 65c87768b6..9c30b35d5c 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