summaryrefslogtreecommitdiff
path: root/CHANGES.rst
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 /CHANGES.rst
parentfe10ebfeace4c965ca33ae3a909d47628a58d7fd (diff)
downloadpython-setuptools-git-1d330f9daded60f0d7721b51d8027494c5bf11d3.tar.gz
Bump version: 55.0.0 → 56.0.0v56.0.0
Diffstat (limited to 'CHANGES.rst')
-rw-r--r--CHANGES.rst28
1 files changed, 28 insertions, 0 deletions
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
-------