aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSergey Shepelev <temotor@gmail.com>2020-05-19 17:28:48 +0300
committerSergey Shepelev <temotor@gmail.com>2020-05-19 17:28:48 +0300
commit9413ffc973a2dc90abf787509ee82238345d5602 (patch)
tree0bef887c61c06a4e81dbbdaee8caa17f2e46d167
parentfe3136ac369199abd9d6afd2d2a61a11da9e32ac (diff)
downloadhttplib2-9413ffc973a2dc90abf787509ee82238345d5602.tar.gz
v0.17.4 release
-rw-r--r--CHANGELOG5
-rw-r--r--python2/httplib2/__init__.py2
-rw-r--r--python3/httplib2/__init__.py2
-rwxr-xr-xsetup.py2
4 files changed, 8 insertions, 3 deletions
diff --git a/CHANGELOG b/CHANGELOG
index e148ba5..4f4ca13 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,3 +1,8 @@
+0.17.4
+
+ Ship test suite in source dist
+ https://github.com/httplib2/httplib2/pull/168
+
0.17.3
IronPython2.7: relative import iri2uri fixes ImportError
diff --git a/python2/httplib2/__init__.py b/python2/httplib2/__init__.py
index 7392e79..97e06c1 100644
--- a/python2/httplib2/__init__.py
+++ b/python2/httplib2/__init__.py
@@ -19,7 +19,7 @@ __contributors__ = [
"Alex Yu",
]
__license__ = "MIT"
-__version__ = '0.17.3'
+__version__ = '0.17.4'
import base64
import calendar
diff --git a/python3/httplib2/__init__.py b/python3/httplib2/__init__.py
index 19cd4d3..8785cc1 100644
--- a/python3/httplib2/__init__.py
+++ b/python3/httplib2/__init__.py
@@ -15,7 +15,7 @@ __contributors__ = [
"Alex Yu",
]
__license__ = "MIT"
-__version__ = '0.17.3'
+__version__ = '0.17.4'
import base64
import calendar
diff --git a/setup.py b/setup.py
index eb32815..c711176 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.3'
+VERSION = '0.17.4'
# `python setup.py test` uses existing Python environment, no virtualenv, no pip.