aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSergey Shepelev <temotor@gmail.com>2019-09-26 08:29:12 +0300
committerSergey Shepelev <temotor@gmail.com>2019-09-26 08:29:12 +0300
commit761558788d540b9442cd1614570074c61aa0bfca (patch)
treed4b4d9b985d52709008b9d01fa2b2de63decb7a9
parentcfba1201736e0060a9cb82eab73ad49988ab7416 (diff)
downloadplatform_external_python_httplib2-761558788d540b9442cd1614570074c61aa0bfca.tar.gz
platform_external_python_httplib2-761558788d540b9442cd1614570074c61aa0bfca.tar.bz2
platform_external_python_httplib2-761558788d540b9442cd1614570074c61aa0bfca.zip
v0.14.0 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 2477917..10e2e4b 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,3 +1,8 @@
+0.14.0
+
+ Python3: PROXY_TYPE_SOCKS5 with str user/pass raised TypeError
+ https://github.com/httplib2/httplib2/pull/145
+
0.13.1
Python3: Use no_proxy
diff --git a/python2/httplib2/__init__.py b/python2/httplib2/__init__.py
index 2428e4b..98228e3 100644
--- a/python2/httplib2/__init__.py
+++ b/python2/httplib2/__init__.py
@@ -19,7 +19,7 @@ __contributors__ = [
"Alex Yu",
]
__license__ = "MIT"
-__version__ = '0.13.1'
+__version__ = '0.14.0'
import base64
import calendar
diff --git a/python3/httplib2/__init__.py b/python3/httplib2/__init__.py
index 23992aa..4312f30 100644
--- a/python3/httplib2/__init__.py
+++ b/python3/httplib2/__init__.py
@@ -15,7 +15,7 @@ __contributors__ = [
"Alex Yu",
]
__license__ = "MIT"
-__version__ = '0.13.1'
+__version__ = '0.14.0'
import base64
import calendar
diff --git a/setup.py b/setup.py
index 3f917fd..db1db61 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.13.1'
+VERSION = '0.14.0'
# `python setup.py test` uses existing Python environment, no virtualenv, no pip.