From 761558788d540b9442cd1614570074c61aa0bfca Mon Sep 17 00:00:00 2001 From: Sergey Shepelev Date: Thu, 26 Sep 2019 08:29:12 +0300 Subject: [PATCH] v0.14.0 release --- CHANGELOG | 5 +++++ python2/httplib2/__init__.py | 2 +- python3/httplib2/__init__.py | 2 +- setup.py | 2 +- 4 files changed, 8 insertions(+), 3 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index 24779173..10e2e4b1 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 2428e4ba..98228e3b 100644 --- a/python2/httplib2/__init__.py +++ b/python2/httplib2/__init__.py @@ -19,7 +19,7 @@ "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 23992aaf..4312f300 100644 --- a/python3/httplib2/__init__.py +++ b/python3/httplib2/__init__.py @@ -15,7 +15,7 @@ "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 3f917fdc..db1db615 100755 --- a/setup.py +++ b/setup.py @@ -4,7 +4,7 @@ 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.