diff options
author | Jason R. Coombs <jaraco@jaraco.com> | 2018-10-26 11:41:29 -0400 |
---|---|---|
committer | Jason R. Coombs <jaraco@jaraco.com> | 2018-10-26 11:41:29 -0400 |
commit | 8cdb68448e70d019ccaf25b2d66b1ecbf82494e5 (patch) | |
tree | e04d92911ceb2ec66903a5729f23583c265c8f57 | |
parent | ee5ceb12f87e8e1aeeb05f26538de21207570d61 (diff) | |
download | external_python_setuptools-8cdb68448e70d019ccaf25b2d66b1ecbf82494e5.tar.gz external_python_setuptools-8cdb68448e70d019ccaf25b2d66b1ecbf82494e5.tar.bz2 external_python_setuptools-8cdb68448e70d019ccaf25b2d66b1ecbf82494e5.zip |
Bump version: 40.4.3 → 40.5.0v40.5.0
-rw-r--r-- | CHANGES.rst | 10 | ||||
-rw-r--r-- | changelog.d/1335.change.rst | 1 | ||||
-rw-r--r-- | changelog.d/1502.change.rst | 1 | ||||
-rw-r--r-- | changelog.d/1517.change.rst | 1 | ||||
-rw-r--r-- | changelog.d/1520.change.rst | 1 | ||||
-rw-r--r-- | changelog.d/1525.doc.rst | 1 | ||||
-rw-r--r-- | setup.cfg | 2 | ||||
-rwxr-xr-x | setup.py | 2 |
8 files changed, 12 insertions, 7 deletions
diff --git a/CHANGES.rst b/CHANGES.rst index 263a19aa..ca07119d 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,3 +1,13 @@ +v40.5.0 +------- + +* #1335: In ``pkg_resources.normalize_path``, fix issue on Cygwin when cwd contains symlinks. +* #1502: Deprecated support for downloads from Subversion in package_index/easy_install. +* #1517: Dropped use of six.u in favor of `u""` literals. +* #1520: Added support for ``data_files`` in ``setup.cfg``. +* #1525: Fixed rendering of the deprecation warning in easy_install doc. + + v40.4.3 ------- diff --git a/changelog.d/1335.change.rst b/changelog.d/1335.change.rst deleted file mode 100644 index a6ced1bb..00000000 --- a/changelog.d/1335.change.rst +++ /dev/null @@ -1 +0,0 @@ -In ``pkg_resources.normalize_path``, fix issue on Cygwin when cwd contains symlinks. diff --git a/changelog.d/1502.change.rst b/changelog.d/1502.change.rst deleted file mode 100644 index 8ddf5d43..00000000 --- a/changelog.d/1502.change.rst +++ /dev/null @@ -1 +0,0 @@ -Deprecated support for downloads from Subversion in package_index/easy_install. diff --git a/changelog.d/1517.change.rst b/changelog.d/1517.change.rst deleted file mode 100644 index 18a77a8b..00000000 --- a/changelog.d/1517.change.rst +++ /dev/null @@ -1 +0,0 @@ -Dropped use of six.u in favor of `u""` literals. diff --git a/changelog.d/1520.change.rst b/changelog.d/1520.change.rst deleted file mode 100644 index 00569c6f..00000000 --- a/changelog.d/1520.change.rst +++ /dev/null @@ -1 +0,0 @@ -Added support for ``data_files`` in ``setup.cfg``. diff --git a/changelog.d/1525.doc.rst b/changelog.d/1525.doc.rst deleted file mode 100644 index 402ea260..00000000 --- a/changelog.d/1525.doc.rst +++ /dev/null @@ -1 +0,0 @@ -Fixed rendering of the deprecation warning in easy_install doc. @@ -1,5 +1,5 @@ [bumpversion] -current_version = 40.4.3 +current_version = 40.5.0 commit = True tag = True @@ -89,7 +89,7 @@ def pypi_link(pkg_filename): setup_params = dict( name="setuptools", - version="40.4.3", + version="40.5.0", description=( "Easily download, build, install, upgrade, and uninstall " "Python packages" |