From 1d330f9daded60f0d7721b51d8027494c5bf11d3 Mon Sep 17 00:00:00 2001 From: "Jason R. Coombs" Date: Thu, 8 Apr 2021 19:34:42 -0400 Subject: [PATCH] =?UTF-8?q?Bump=20version:=2055.0.0=20=E2=86=92=2056.0.0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .bumpversion.cfg | 2 +- CHANGES.rst | 28 ++++++++++++++++++++++++++++ changelog.d/2620.breaking.rst | 4 ---- changelog.d/2620.change.rst | 1 - changelog.d/2620.deprecation.rst | 2 -- changelog.d/2620.doc.rst | 1 - changelog.d/2632.change.rst | 3 --- setup.cfg | 2 +- 8 files changed, 30 insertions(+), 13 deletions(-) delete mode 100644 changelog.d/2620.breaking.rst delete mode 100644 changelog.d/2620.change.rst delete mode 100644 changelog.d/2620.deprecation.rst delete mode 100644 changelog.d/2620.doc.rst delete mode 100644 changelog.d/2632.change.rst diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 7fe611a698..dd76f43d91 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 d073fa8ef3..ef1d926b15 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 431e7105d9..0000000000 --- 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 5470592d17..0000000000 --- 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 1af5f2461a..0000000000 --- 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 7564adaca4..0000000000 --- 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 a13bfdfa70..0000000000 --- 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 6bb6508f8b..ebdc2c638c 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