From 2ab03c77d7d06845c1d76ce870cbc77cfce129ba Mon Sep 17 00:00:00 2001 From: "Jason R. Coombs" Date: Sat, 28 Jan 2023 12:58:36 -0500 Subject: [PATCH] =?UTF-8?q?Bump=20version:=2066.1.1=20=E2=86=92=2067.0.0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .bumpversion.cfg | 2 +- CHANGES.rst | 15 +++++++++++++++ changelog.d/3741.breaking.rst | 2 -- changelog.d/3790.breaking.rst | 5 ----- setup.cfg | 2 +- 5 files changed, 17 insertions(+), 9 deletions(-) delete mode 100644 changelog.d/3741.breaking.rst delete mode 100644 changelog.d/3790.breaking.rst diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 53f735f0c5..3110d10874 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 66.1.1 +current_version = 67.0.0 commit = True tag = True diff --git a/CHANGES.rst b/CHANGES.rst index fc92c8c068..a708a3934d 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,3 +1,18 @@ +v67.0.0 +------- + + +Breaking Changes +^^^^^^^^^^^^^^^^ +* #3741: Removed patching of ``distutils._msvccompiler.gen_lib_options`` + for compatibility with Numpy < 1.11.2 -- by :user:`mgorny` +* #3790: Bump vendored version of :pypi:`packaging` to 23.0 + (:pypi:`pyparsing` is no longer required and was removed). + As a consequence, users will experience a more strict parsing of requirements. + Specifications that don't comply with :pep:`440` and :pep:`508` will result + in build errors. + + v66.1.1 ------- diff --git a/changelog.d/3741.breaking.rst b/changelog.d/3741.breaking.rst deleted file mode 100644 index 48e4e175df..0000000000 --- a/changelog.d/3741.breaking.rst +++ /dev/null @@ -1,2 +0,0 @@ -Removed patching of ``distutils._msvccompiler.gen_lib_options`` -for compatibility with Numpy < 1.11.2 -- by :user:`mgorny` diff --git a/changelog.d/3790.breaking.rst b/changelog.d/3790.breaking.rst deleted file mode 100644 index 252840d16e..0000000000 --- a/changelog.d/3790.breaking.rst +++ /dev/null @@ -1,5 +0,0 @@ -Bump vendored version of :pypi:`packaging` to 23.0 -(:pypi:`pyparsing` is no longer required and was removed). -As a consequence, users will experience a more strict parsing of requirements. -Specifications that don't comply with :pep:`440` and :pep:`508` will result -in build errors. diff --git a/setup.cfg b/setup.cfg index 0cededb79f..4d02a0fe7f 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,6 +1,6 @@ [metadata] name = setuptools -version = 66.1.1 +version = 67.0.0 author = Python Packaging Authority author_email = distutils-sig@python.org description = Easily download, build, install, upgrade, and uninstall Python packages