aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSergey Shepelev <temotor@gmail.com>2019-12-19 14:28:16 +0300
committerSergey Shepelev <temotor@gmail.com>2019-12-19 14:28:16 +0300
commit095494db43abe8ddfd53b3c389baaadbfcae4f12 (patch)
tree27d4d03a4893231d5d9340df5564f60d43efb696
parentd12344af52d57060284cca7fbe85deb6581a6942 (diff)
downloadhttplib2-095494db43abe8ddfd53b3c389baaadbfcae4f12.tar.gz
v0.15.0 release
-rw-r--r--CHANGELOG11
-rw-r--r--python2/httplib2/__init__.py2
-rw-r--r--python3/httplib2/__init__.py2
-rwxr-xr-xsetup.py2
4 files changed, 14 insertions, 3 deletions
diff --git a/CHANGELOG b/CHANGELOG
index 10e2e4b..07fb949 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,3 +1,14 @@
+0.15.0
+
+ python2: regression in connect() error handling
+ https://github.com/httplib2/httplib2/pull/150
+
+ add support for password protected certificate files
+ https://github.com/httplib2/httplib2/pull/143
+
+ feature: Http.close() to clean persistent connections and sensitive data
+ https://github.com/httplib2/httplib2/pull/149
+
0.14.0
Python3: PROXY_TYPE_SOCKS5 with str user/pass raised TypeError
diff --git a/python2/httplib2/__init__.py b/python2/httplib2/__init__.py
index affc057..c8302eb 100644
--- a/python2/httplib2/__init__.py
+++ b/python2/httplib2/__init__.py
@@ -19,7 +19,7 @@ __contributors__ = [
"Alex Yu",
]
__license__ = "MIT"
-__version__ = '0.14.0'
+__version__ = '0.15.0'
import base64
import calendar
diff --git a/python3/httplib2/__init__.py b/python3/httplib2/__init__.py
index 6684cc4..d8c3d34 100644
--- a/python3/httplib2/__init__.py
+++ b/python3/httplib2/__init__.py
@@ -15,7 +15,7 @@ __contributors__ = [
"Alex Yu",
]
__license__ = "MIT"
-__version__ = '0.14.0'
+__version__ = '0.15.0'
import base64
import calendar
diff --git a/setup.py b/setup.py
index db1db61..33c8827 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.14.0'
+VERSION = '0.15.0'
# `python setup.py test` uses existing Python environment, no virtualenv, no pip.