diff options
| -rw-r--r-- | .bumpversion.cfg | 2 | ||||
| -rw-r--r-- | CHANGES.rst | 18 | ||||
| -rw-r--r-- | changelog.d/1932.change.rst | 1 | ||||
| -rw-r--r-- | changelog.d/2553.doc.rst | 1 | ||||
| -rw-r--r-- | changelog.d/2570.change.rst | 1 | ||||
| -rw-r--r-- | changelog.d/2582.breaking.rst | 1 | ||||
| -rw-r--r-- | setup.cfg | 2 |
7 files changed, 20 insertions, 6 deletions
diff --git a/.bumpversion.cfg b/.bumpversion.cfg index a408627e..25490e49 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 53.1.0 +current_version = 54.0.0 commit = True tag = True diff --git a/CHANGES.rst b/CHANGES.rst index 864ee105..62f911aa 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,3 +1,21 @@ +v54.0.0 +------- + + +Breaking Changes +^^^^^^^^^^^^^^^^ +* #2582: Simplified build-from-source story by providing bootstrapping metadata in a separate egg-info directory. Build requirements no longer include setuptools itself. Sdist once again includes the pyproject.toml. Project can no longer be installed from source on pip 19.x, but install from source is still supported on pip < 19 and pip >= 20 and install from wheel is still supported with pip >= 9. + +Changes +^^^^^^^ +* #1932: Handled :code:`AttributeError` by raising :code:`DistutilsSetupError` in :code:`dist.check_specifier()` when specifier is not a string -- by :user:`melissa-kun-li` +* #2570: Correctly parse cmdclass in setup.cfg. + +Documentation changes +^^^^^^^^^^^^^^^^^^^^^ +* #2553: Added userguide example for markers in extras_require -- by :user:`pwoolvett` + + v53.1.0 ------- diff --git a/changelog.d/1932.change.rst b/changelog.d/1932.change.rst deleted file mode 100644 index a7af5b72..00000000 --- a/changelog.d/1932.change.rst +++ /dev/null @@ -1 +0,0 @@ -Handled :code:`AttributeError` by raising :code:`DistutilsSetupError` in :code:`dist.check_specifier()` when specifier is not a string -- by :user:`melissa-kun-li`
\ No newline at end of file diff --git a/changelog.d/2553.doc.rst b/changelog.d/2553.doc.rst deleted file mode 100644 index fa03329a..00000000 --- a/changelog.d/2553.doc.rst +++ /dev/null @@ -1 +0,0 @@ -Added userguide example for markers in extras_require -- by :user:`pwoolvett` diff --git a/changelog.d/2570.change.rst b/changelog.d/2570.change.rst deleted file mode 100644 index 165089ed..00000000 --- a/changelog.d/2570.change.rst +++ /dev/null @@ -1 +0,0 @@ -Correctly parse cmdclass in setup.cfg. diff --git a/changelog.d/2582.breaking.rst b/changelog.d/2582.breaking.rst deleted file mode 100644 index 908ababe..00000000 --- a/changelog.d/2582.breaking.rst +++ /dev/null @@ -1 +0,0 @@ -Simplified build-from-source story by providing bootstrapping metadata in a separate egg-info directory. Build requirements no longer include setuptools itself. Sdist once again includes the pyproject.toml. Project can no longer be installed from source on pip 19.x, but install from source is still supported on pip < 19 and pip >= 20 and install from wheel is still supported with pip >= 9. @@ -2,7 +2,7 @@ license_files = LICENSE name = setuptools -version = 53.1.0 +version = 54.0.0 author = Python Packaging Authority author_email = distutils-sig@python.org description = Easily download, build, install, upgrade, and uninstall Python packages |
