diff options
author | Jason R. Coombs <jaraco@jaraco.com> | 2022-08-14 11:49:33 -0400 |
---|---|---|
committer | Jason R. Coombs <jaraco@jaraco.com> | 2022-08-14 11:49:33 -0400 |
commit | e6b911708e900f57c98e3b5b03af6de2953dbc76 (patch) | |
tree | 5151a6ae27af597537b89a1ccab6c1b6467f5c53 | |
parent | 8d90b8381f6db1733e313ee38684f13dda1ffd4c (diff) | |
download | python-setuptools-git-e6b911708e900f57c98e3b5b03af6de2953dbc76.tar.gz |
Bump version: 64.0.3 → 65.0.0v65.0.0
-rw-r--r-- | .bumpversion.cfg | 2 | ||||
-rw-r--r-- | CHANGES.rst | 15 | ||||
-rw-r--r-- | changelog.d/3505.breaking.rst | 1 | ||||
-rw-r--r-- | changelog.d/3519.doc.rst | 2 | ||||
-rw-r--r-- | changelog.d/3521.breaking.rst | 1 | ||||
-rw-r--r-- | setup.cfg | 2 |
6 files changed, 17 insertions, 6 deletions
diff --git a/.bumpversion.cfg b/.bumpversion.cfg index f8ab2b2d..05e78cde 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 64.0.3 +current_version = 65.0.0 commit = True tag = True diff --git a/CHANGES.rst b/CHANGES.rst index cceb12bd..d4d64379 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,3 +1,18 @@ +v65.0.0 +------- + + +Breaking Changes +^^^^^^^^^^^^^^^^ +* #3505: Removed 'msvccompiler' and 'msvc9compiler' modules from distutils. +* #3521: Remove bdist_msi and bdist_wininst commands, which have been deprecated since Python 3.9. Use older Setuptools for these behaviors if needed. + +Documentation changes +^^^^^^^^^^^^^^^^^^^^^ +* #3519: Changed the note in ``keywords`` documentation regarding editable installations + to specify which ``setuptools`` version require a minimal ``setup.py`` file or not. + + v64.0.3 ------- diff --git a/changelog.d/3505.breaking.rst b/changelog.d/3505.breaking.rst deleted file mode 100644 index 32b990a4..00000000 --- a/changelog.d/3505.breaking.rst +++ /dev/null @@ -1 +0,0 @@ -Removed 'msvccompiler' and 'msvc9compiler' modules from distutils. diff --git a/changelog.d/3519.doc.rst b/changelog.d/3519.doc.rst deleted file mode 100644 index 0108f430..00000000 --- a/changelog.d/3519.doc.rst +++ /dev/null @@ -1,2 +0,0 @@ -Changed the note in ``keywords`` documentation regarding editable installations -to specify which ``setuptools`` version require a minimal ``setup.py`` file or not.
\ No newline at end of file diff --git a/changelog.d/3521.breaking.rst b/changelog.d/3521.breaking.rst deleted file mode 100644 index 75f1002d..00000000 --- a/changelog.d/3521.breaking.rst +++ /dev/null @@ -1 +0,0 @@ -Remove bdist_msi and bdist_wininst commands, which have been deprecated since Python 3.9. Use older Setuptools for these behaviors if needed. @@ -1,6 +1,6 @@ [metadata] name = setuptools -version = 64.0.3 +version = 65.0.0 author = Python Packaging Authority author_email = distutils-sig@python.org description = Easily download, build, install, upgrade, and uninstall Python packages |