aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJason R. Coombs <jaraco@jaraco.com>2019-01-28 19:08:28 -0500
committerJason R. Coombs <jaraco@jaraco.com>2019-01-28 19:08:28 -0500
commit5133d86c3e71709f59fbb9c5b60577bcdb8a7698 (patch)
tree7d00bfb6ce636ba74b97240fbbabed334ade224c
parentc3a8b678d1058564e4ec51911edc70abd314dbdd (diff)
downloadexternal_python_setuptools-5133d86c3e71709f59fbb9c5b60577bcdb8a7698.tar.gz
external_python_setuptools-5133d86c3e71709f59fbb9c5b60577bcdb8a7698.tar.bz2
external_python_setuptools-5133d86c3e71709f59fbb9c5b60577bcdb8a7698.zip
Bump version: 40.7.0 → 40.7.1v40.7.1
-rw-r--r--CHANGES.rst6
-rw-r--r--changelog.d/1660.change.rst1
-rw-r--r--setup.cfg2
-rwxr-xr-xsetup.py2
4 files changed, 8 insertions, 3 deletions
diff --git a/CHANGES.rst b/CHANGES.rst
index ca7122e9..79ebe165 100644
--- a/CHANGES.rst
+++ b/CHANGES.rst
@@ -1,3 +1,9 @@
+v40.7.1
+-------
+
+* #1660: On Python 2, when reading config files, downcast options from text to bytes to satisfy distutils expectations.
+
+
v40.7.0
-------
diff --git a/changelog.d/1660.change.rst b/changelog.d/1660.change.rst
deleted file mode 100644
index 52f62397..00000000
--- a/changelog.d/1660.change.rst
+++ /dev/null
@@ -1 +0,0 @@
-On Python 2, when reading config files, downcast options from text to bytes to satisfy distutils expectations.
diff --git a/setup.cfg b/setup.cfg
index 78eb7596..c934e2f4 100644
--- a/setup.cfg
+++ b/setup.cfg
@@ -1,5 +1,5 @@
[bumpversion]
-current_version = 40.7.0
+current_version = 40.7.1
commit = True
tag = True
diff --git a/setup.py b/setup.py
index 00db0f0a..9e50513b 100755
--- a/setup.py
+++ b/setup.py
@@ -89,7 +89,7 @@ def pypi_link(pkg_filename):
setup_params = dict(
name="setuptools",
- version="40.7.0",
+ version="40.7.1",
description=(
"Easily download, build, install, upgrade, and uninstall "
"Python packages"