diff options
-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 |