Bump version: 39.1.0 → 39.2.0

This commit is contained in:
Jeremy Bowman 2018-05-19 15:06:49 -04:00
parent de686c285b
commit 6d07df7536
17 changed files with 28 additions and 22 deletions

View File

@ -1,3 +1,29 @@
v39.2.0
-------
* #1359: Support using "file:" to load a PEP 440-compliant package version from
a text file.
* #1360: Fixed issue with a mismatch between the name of the package and the
name of the .dist-info file in wheel files
* #1365: Take the package_dir option into account when loading the version from
a module attribute.
* #1353: Added coverage badge to README.
* #1356: Made small fixes to the developer guide documentation.
* #1357: Fixed warnings in documentation builds and started enforcing that the
docs build without warnings in tox.
* #1376: Updated release process docs.
* #1343: The ``setuptools`` specific ``long_description_content_type``,
``project_urls`` and ``provides_extras`` fields are now set consistently
after any ``distutils`` ``setup_keywords`` calls, allowing them to override
values.
* #1352: Added ``tox`` environment for documentation builds.
* #1354: Added ``towncrier`` for changelog managment.
* #1355: Add PR template.
* #1368: Fixed tests which failed without network connectivity.
* #1369: Added unit tests for PEP 425 compatibility tags support.
* #1372: Stop testing Python 3.3 in Travis CI, now that the latest version of
``wheel`` no longer installs on it.
v39.1.0
-------

View File

@ -1,4 +0,0 @@
The ``setuptools`` specific ``long_description_content_type``,
``project_urls`` and ``provides_extras`` fields are now set
consistently after any ``distutils`` ``setup_keywords`` calls,
allowing them to override values.

View File

@ -1 +0,0 @@
Added ``tox`` environment for documentation builds.

View File

@ -1 +0,0 @@
Added coverage badge to README.

View File

@ -1 +0,0 @@
Added ``towncrier`` for changelog managment.

View File

@ -1 +0,0 @@
Add PR template.

View File

@ -1 +0,0 @@
Made small fixes to the developer guide documentation.

View File

@ -1 +0,0 @@
Fixed warnings in documentation builds and started enforcing that the docs build without warnings in tox.

View File

@ -1,2 +0,0 @@
Support using "file:" to load a PEP 440-compliant package version
from a text file.

View File

@ -1 +0,0 @@
Fixed issue with a mismatch between the name of the package and the name of the .dist-info file in wheel files

View File

@ -1,2 +0,0 @@
Take the package_dir option into account when loading the version from a
module attribute.

View File

@ -1 +0,0 @@
Fixed tests which failed without network connectivity.

View File

@ -1 +0,0 @@
Added unit tests for PEP 425 compatibility tags support.

View File

@ -1,2 +0,0 @@
Stop testing Python 3.3 in Travis CI, now that the latest version of
``wheel`` no longer installs on it.

View File

@ -1 +0,0 @@
Updated release process docs.

View File

@ -1,5 +1,5 @@
[bumpversion]
current_version = 39.1.0
current_version = 39.2.0
commit = True
tag = True

View File

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