aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSergey Shepelev <temotor@gmail.com>2020-04-11 02:16:46 +0300
committerSergey Shepelev <temotor@gmail.com>2020-04-11 02:16:46 +0300
commit067b3f250769e921dc397e28f3aadd0ffa14e17b (patch)
tree914c757f5294a76f2bf2d9d6f1b3b5c65bc7364a
parent59586b5f0ccfa9d570d8c7d908d00d34cf1f3c89 (diff)
downloadhttplib2-067b3f250769e921dc397e28f3aadd0ffa14e17b.tar.gz
v0.17.2 release
-rw-r--r--CHANGELOG6
-rw-r--r--python2/httplib2/__init__.py2
-rw-r--r--python3/httplib2/__init__.py2
-rwxr-xr-xsetup.py2
4 files changed, 9 insertions, 3 deletions
diff --git a/CHANGELOG b/CHANGELOG
index 539326e..ba20b24 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,3 +1,9 @@
+0.17.2
+
+ python3 + debug + IPv6 disabled: https raised
+ "IndexError: Replacement index 1 out of range for positional args tuple"
+ https://github.com/httplib2/httplib2/issues/161
+
0.17.1
python3: no_proxy was not checked with https
diff --git a/python2/httplib2/__init__.py b/python2/httplib2/__init__.py
index ea6a0f5..9057d1f 100644
--- a/python2/httplib2/__init__.py
+++ b/python2/httplib2/__init__.py
@@ -19,7 +19,7 @@ __contributors__ = [
"Alex Yu",
]
__license__ = "MIT"
-__version__ = '0.17.1'
+__version__ = '0.17.2'
import base64
import calendar
diff --git a/python3/httplib2/__init__.py b/python3/httplib2/__init__.py
index d015fe6..135c6f6 100644
--- a/python3/httplib2/__init__.py
+++ b/python3/httplib2/__init__.py
@@ -15,7 +15,7 @@ __contributors__ = [
"Alex Yu",
]
__license__ = "MIT"
-__version__ = '0.17.1'
+__version__ = '0.17.2'
import base64
import calendar
diff --git a/setup.py b/setup.py
index ded6f14..9140845 100755
--- a/setup.py
+++ b/setup.py
@@ -4,7 +4,7 @@ import setuptools.command.test
import sys
pkgdir = {"": "python%s" % sys.version_info[0]}
-VERSION = '0.17.1'
+VERSION = '0.17.2'
# `python setup.py test` uses existing Python environment, no virtualenv, no pip.