diff options
author | Jason R. Coombs <jaraco@jaraco.com> | 2019-12-31 13:14:50 -0500 |
---|---|---|
committer | Jason R. Coombs <jaraco@jaraco.com> | 2019-12-31 13:14:50 -0500 |
commit | 47aab6525101bda3e2c7af1588b7abf5f6608b65 (patch) | |
tree | b61b25fdd4687ad1830405d6abb57ba4e170562b | |
parent | d971118ebff9b829db8489f229401374dc5c991a (diff) | |
download | external_python_setuptools-43.0.0.tar.gz external_python_setuptools-43.0.0.tar.bz2 external_python_setuptools-43.0.0.zip |
Bump version: 42.0.2 → 43.0.0v43.0.0
-rw-r--r-- | .bumpversion.cfg | 2 | ||||
-rw-r--r-- | CHANGES.rst | 7 | ||||
-rw-r--r-- | changelog.d/1634.breaking.rst | 1 | ||||
-rw-r--r-- | changelog.d/1927.change.rst | 1 | ||||
-rw-r--r-- | setup.cfg | 2 |
5 files changed, 9 insertions, 4 deletions
diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 8a9f4435..25093b87 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 42.0.2 +current_version = 43.0.0 commit = True tag = True diff --git a/CHANGES.rst b/CHANGES.rst index 81abbe59..817f8168 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,3 +1,10 @@ +v43.0.0 +------- + +* #1634: Include ``pyproject.toml`` in source distribution by default. Projects relying on the previous behavior where ``pyproject.toml`` was excluded by default should stop relying on that behavior or add ``exclude pyproject.toml`` to their MANIFEST.in file. +* #1927: Setuptools once again declares 'setuptools' in the ``build-system.requires`` and adds PEP 517 build support by declaring itself as the ``build-backend``. It additionally specifies ``build-system.backend-path`` to rely on itself for those builders that support it. + + v42.0.2 ------- diff --git a/changelog.d/1634.breaking.rst b/changelog.d/1634.breaking.rst deleted file mode 100644 index b65e5d9f..00000000 --- a/changelog.d/1634.breaking.rst +++ /dev/null @@ -1 +0,0 @@ -Include ``pyproject.toml`` in source distribution by default. Projects relying on the previous behavior where ``pyproject.toml`` was excluded by default should stop relying on that behavior or add ``exclude pyproject.toml`` to their MANIFEST.in file. diff --git a/changelog.d/1927.change.rst b/changelog.d/1927.change.rst deleted file mode 100644 index 3b293d63..00000000 --- a/changelog.d/1927.change.rst +++ /dev/null @@ -1 +0,0 @@ -Setuptools once again declares 'setuptools' in the ``build-system.requires`` and adds PEP 517 build support by declaring itself as the ``build-backend``. It additionally specifies ``build-system.backend-path`` to rely on itself for those builders that support it. @@ -19,7 +19,7 @@ universal = 1 [metadata] name = setuptools -version = 42.0.2 +version = 43.0.0 description = Easily download, build, install, upgrade, and uninstall Python packages author = Python Packaging Authority author_email = distutils-sig@python.org |