Bump version: 40.6.3 → 40.7.0

This commit is contained in:
Jason R. Coombs 2019-01-27 09:16:47 -05:00
parent b31997dbcd
commit 78fd73026a
8 changed files with 13 additions and 7 deletions

View File

@ -1,3 +1,13 @@
v40.7.0
-------
* #1551: File inputs for the `license` field in `setup.cfg` files now explicitly raise an error.
* #1180: Add support for non-ASCII in setup.cfg (#1062). Add support for native strings on some parameters (#1136).
* #1499: ``setuptools.package_index`` no longer relies on the deprecated ``urllib.parse.splituser`` per Python #27485.
* #1544: Added tests for PackageIndex.download (for git URLs).
* #1625: In PEP 517 build_meta builder, ensure that sdists are built as gztar per the spec.
v40.6.3
-------

View File

@ -1 +0,0 @@
Add support for non-ASCII in setup.cfg (#1062). Add support for native strings on some parameters (#1136).

View File

@ -1 +0,0 @@
``setuptools.package_index`` no longer relies on the deprecated ``urllib.parse.splituser`` per Python #27485.

View File

@ -1 +0,0 @@
Added tests for PackageIndex.download (for git URLs).

View File

@ -1 +0,0 @@
File inputs for the `license` field in `setup.cfg` files now explicitly raise an error.

View File

@ -1 +0,0 @@
In PEP 517 build_meta builder, ensure that sdists are built as gztar per the spec.

View File

@ -1,5 +1,5 @@
[bumpversion]
current_version = 40.6.3
current_version = 40.7.0
commit = True
tag = True
@ -26,3 +26,4 @@ universal = 1
license_file = LICENSE
[bumpversion:file:setup.py]

View File

@ -89,7 +89,7 @@ def pypi_link(pkg_filename):
setup_params = dict(
name="setuptools",
version="40.6.3",
version="40.7.0",
description=(
"Easily download, build, install, upgrade, and uninstall "
"Python packages"