diff options
author | Jason R. Coombs <jaraco@jaraco.com> | 2020-03-08 15:53:33 -0400 |
---|---|---|
committer | Jason R. Coombs <jaraco@jaraco.com> | 2020-03-08 15:53:33 -0400 |
commit | 50f3575da42ce5b7c013c28ff623ce16c231455d (patch) | |
tree | 2ad7e2e00c9ba1f60b0cdd38dd93b89b337fce9d | |
parent | dfd59c2a10e1fd74a9f9c719eaffe2b7ebeb414e (diff) | |
download | external_python_setuptools-50f3575da42ce5b7c013c28ff623ce16c231455d.tar.gz external_python_setuptools-50f3575da42ce5b7c013c28ff623ce16c231455d.tar.bz2 external_python_setuptools-50f3575da42ce5b7c013c28ff623ce16c231455d.zip |
Bump version: 45.3.0 → 46.0.0v46.0.0
-rw-r--r-- | .bumpversion.cfg | 2 | ||||
-rw-r--r-- | CHANGES.rst | 10 | ||||
-rw-r--r-- | changelog.d/1890.change.rst | 1 | ||||
-rw-r--r-- | changelog.d/1899.change.rst | 1 | ||||
-rw-r--r-- | changelog.d/1991.misc.rst | 1 | ||||
-rw-r--r-- | changelog.d/2011.doc.rst | 1 | ||||
-rw-r--r-- | changelog.d/65.breaking.rst | 1 | ||||
-rw-r--r-- | setup.cfg | 2 |
8 files changed, 12 insertions, 7 deletions
diff --git a/.bumpversion.cfg b/.bumpversion.cfg index c438b5a8..5fabdff0 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 45.3.0 +current_version = 46.0.0 commit = True tag = True diff --git a/CHANGES.rst b/CHANGES.rst index e35c4472..93c1f890 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,3 +1,13 @@ +v46.0.0 +------- + +* #65: Once again as in 3.0, removed the Features feature. +* #1890: Fix vendored dependencies so importing ``setuptools.extern.some_module`` gives the same object as ``setuptools._vendor.some_module``. This makes Metadata picklable again. +* #1899: Test suite now fails on warnings. +* #2011: Fix broken link to distutils docs on package_data +* #1991: Include pkg_resources test data in sdist, so tests can be executed from it. + + v45.3.0 ------- diff --git a/changelog.d/1890.change.rst b/changelog.d/1890.change.rst deleted file mode 100644 index 458d8117..00000000 --- a/changelog.d/1890.change.rst +++ /dev/null @@ -1 +0,0 @@ -Fix vendored dependencies so importing ``setuptools.extern.some_module`` gives the same object as ``setuptools._vendor.some_module``. This makes Metadata picklable again.
\ No newline at end of file diff --git a/changelog.d/1899.change.rst b/changelog.d/1899.change.rst deleted file mode 100644 index 30768439..00000000 --- a/changelog.d/1899.change.rst +++ /dev/null @@ -1 +0,0 @@ -Test suite now fails on warnings. diff --git a/changelog.d/1991.misc.rst b/changelog.d/1991.misc.rst deleted file mode 100644 index ac6904a2..00000000 --- a/changelog.d/1991.misc.rst +++ /dev/null @@ -1 +0,0 @@ -Include pkg_resources test data in sdist, so tests can be executed from it. diff --git a/changelog.d/2011.doc.rst b/changelog.d/2011.doc.rst deleted file mode 100644 index e36fb6a7..00000000 --- a/changelog.d/2011.doc.rst +++ /dev/null @@ -1 +0,0 @@ -Fix broken link to distutils docs on package_data diff --git a/changelog.d/65.breaking.rst b/changelog.d/65.breaking.rst deleted file mode 100644 index bde42740..00000000 --- a/changelog.d/65.breaking.rst +++ /dev/null @@ -1 +0,0 @@ -Once again as in 3.0, removed the Features feature. @@ -16,7 +16,7 @@ formats = zip [metadata] name = setuptools -version = 45.3.0 +version = 46.0.0 description = Easily download, build, install, upgrade, and uninstall Python packages author = Python Packaging Authority author_email = distutils-sig@python.org |