summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJason R. Coombs <jaraco@jaraco.com>2022-08-14 11:49:33 -0400
committerJason R. Coombs <jaraco@jaraco.com>2022-08-14 11:49:33 -0400
commite6b911708e900f57c98e3b5b03af6de2953dbc76 (patch)
tree5151a6ae27af597537b89a1ccab6c1b6467f5c53
parent8d90b8381f6db1733e313ee38684f13dda1ffd4c (diff)
downloadpython-setuptools-git-e6b911708e900f57c98e3b5b03af6de2953dbc76.tar.gz
Bump version: 64.0.3 → 65.0.0v65.0.0
-rw-r--r--.bumpversion.cfg2
-rw-r--r--CHANGES.rst15
-rw-r--r--changelog.d/3505.breaking.rst1
-rw-r--r--changelog.d/3519.doc.rst2
-rw-r--r--changelog.d/3521.breaking.rst1
-rw-r--r--setup.cfg2
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.
diff --git a/setup.cfg b/setup.cfg
index 23f119a0..25a0541c 100644
--- a/setup.cfg
+++ b/setup.cfg
@@ -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