summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJason R. Coombs <jaraco@jaraco.com>2021-04-08 19:34:42 -0400
committerJason R. Coombs <jaraco@jaraco.com>2021-04-08 19:34:42 -0400
commit1d330f9daded60f0d7721b51d8027494c5bf11d3 (patch)
treead4d69ccbf2de4cfd9c641570285ef1b0c3d0265
parentfe10ebfeace4c965ca33ae3a909d47628a58d7fd (diff)
downloadpython-setuptools-git-1d330f9daded60f0d7721b51d8027494c5bf11d3.tar.gz
Bump version: 55.0.0 → 56.0.0v56.0.0
-rw-r--r--.bumpversion.cfg2
-rw-r--r--CHANGES.rst28
-rw-r--r--changelog.d/2620.breaking.rst4
-rw-r--r--changelog.d/2620.change.rst1
-rw-r--r--changelog.d/2620.deprecation.rst2
-rw-r--r--changelog.d/2620.doc.rst1
-rw-r--r--changelog.d/2632.change.rst3
-rw-r--r--setup.cfg2
8 files changed, 30 insertions, 13 deletions
diff --git a/.bumpversion.cfg b/.bumpversion.cfg
index 7fe611a6..dd76f43d 100644
--- a/.bumpversion.cfg
+++ b/.bumpversion.cfg
@@ -1,5 +1,5 @@
[bumpversion]
-current_version = 55.0.0
+current_version = 56.0.0
commit = True
tag = True
diff --git a/CHANGES.rst b/CHANGES.rst
index d073fa8e..ef1d926b 100644
--- a/CHANGES.rst
+++ b/CHANGES.rst
@@ -1,3 +1,31 @@
+v56.0.0
+-------
+
+
+Deprecations
+^^^^^^^^^^^^
+* #2620: The ``license_file`` option is now marked as deprecated.
+ Use ``license_files`` instead. -- by :user:`cdce8p`
+
+Breaking Changes
+^^^^^^^^^^^^^^^^
+* #2620: If neither ``license_file`` nor ``license_files`` is specified, the ``sdist``
+ option will now auto-include files that match the following patterns:
+ ``LICEN[CS]E*``, ``COPYING*``, ``NOTICE*``, ``AUTHORS*``.
+ This matches the behavior of ``bdist_wheel``. -- by :user:`cdce8p`
+
+Changes
+^^^^^^^
+* #2620: The ``license_file`` and ``license_files`` options now support glob patterns. -- by :user:`cdce8p`
+* #2632: Implemented ``VendorImporter.find_spec()`` method to get rid
+ of ``ImportWarning`` that Python 3.10 emits when only the old-style
+ importer hooks are present -- by :user:`webknjaz`
+
+Documentation changes
+^^^^^^^^^^^^^^^^^^^^^
+* #2620: Added documentation for the ``license_files`` option. -- by :user:`cdce8p`
+
+
v55.0.0
-------
diff --git a/changelog.d/2620.breaking.rst b/changelog.d/2620.breaking.rst
deleted file mode 100644
index 431e7105..00000000
--- a/changelog.d/2620.breaking.rst
+++ /dev/null
@@ -1,4 +0,0 @@
-If neither ``license_file`` nor ``license_files`` is specified, the ``sdist``
-option will now auto-include files that match the following patterns:
-``LICEN[CS]E*``, ``COPYING*``, ``NOTICE*``, ``AUTHORS*``.
-This matches the behavior of ``bdist_wheel``. -- by :user:`cdce8p`
diff --git a/changelog.d/2620.change.rst b/changelog.d/2620.change.rst
deleted file mode 100644
index 5470592d..00000000
--- a/changelog.d/2620.change.rst
+++ /dev/null
@@ -1 +0,0 @@
-The ``license_file`` and ``license_files`` options now support glob patterns. -- by :user:`cdce8p`
diff --git a/changelog.d/2620.deprecation.rst b/changelog.d/2620.deprecation.rst
deleted file mode 100644
index 1af5f246..00000000
--- a/changelog.d/2620.deprecation.rst
+++ /dev/null
@@ -1,2 +0,0 @@
-The ``license_file`` option is now marked as deprecated.
-Use ``license_files`` instead. -- by :user:`cdce8p`
diff --git a/changelog.d/2620.doc.rst b/changelog.d/2620.doc.rst
deleted file mode 100644
index 7564adac..00000000
--- a/changelog.d/2620.doc.rst
+++ /dev/null
@@ -1 +0,0 @@
-Added documentation for the ``license_files`` option. -- by :user:`cdce8p`
diff --git a/changelog.d/2632.change.rst b/changelog.d/2632.change.rst
deleted file mode 100644
index a13bfdfa..00000000
--- a/changelog.d/2632.change.rst
+++ /dev/null
@@ -1,3 +0,0 @@
-Implemented ``VendorImporter.find_spec()`` method to get rid
-of ``ImportWarning`` that Python 3.10 emits when only the old-style
-importer hooks are present -- by :user:`webknjaz`
diff --git a/setup.cfg b/setup.cfg
index 6bb6508f..ebdc2c63 100644
--- a/setup.cfg
+++ b/setup.cfg
@@ -2,7 +2,7 @@
license_files =
LICENSE
name = setuptools
-version = 55.0.0
+version = 56.0.0
author = Python Packaging Authority
author_email = distutils-sig@python.org
description = Easily download, build, install, upgrade, and uninstall Python packages