aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSergey Shepelev <temotor@gmail.com>2018-11-14 09:40:05 +0500
committerSergey Shepelev <temotor@gmail.com>2018-11-14 09:40:05 +0500
commit86c3b4ea8614cbbddd86fc556781f2f79cd7c2ac (patch)
treeeeaf9c5d046522409774a82777b7779c4e6ec946
parent8b65b523359f0da7e91e130e4877f941cf4511d5 (diff)
downloadhttplib2-86c3b4ea8614cbbddd86fc556781f2f79cd7c2ac.tar.gz
v0.12.0 release
-rw-r--r--CHANGELOG19
-rw-r--r--python2/httplib2/__init__.py2
-rw-r--r--python3/httplib2/__init__.py2
-rwxr-xr-xsetup.py2
4 files changed, 22 insertions, 3 deletions
diff --git a/CHANGELOG b/CHANGELOG
index c04f914..fd29f9f 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,3 +1,22 @@
+0.12.0
+
+ Drop support for Python 3.3
+
+ ca_certs from environment HTTPLIB2_CA_CERTS or certifi
+ https://github.com/httplib2/httplib2/pull/117
+
+ PROXY_TYPE_HTTP with non-empty user/pass raised TypeError: bytes required
+ https://github.com/httplib2/httplib2/pull/115
+
+ Revert http:443->https workaround
+ https://github.com/httplib2/httplib2/issues/112
+
+ eliminate connection pool read race
+ https://github.com/httplib2/httplib2/pull/110
+
+ cache: stronger safename
+ https://github.com/httplib2/httplib2/pull/101
+
0.11.3
No changes, just reupload of 0.11.2 after fixing automatic release conditions in Travis.
diff --git a/python2/httplib2/__init__.py b/python2/httplib2/__init__.py
index f7da748..b89f2fe 100644
--- a/python2/httplib2/__init__.py
+++ b/python2/httplib2/__init__.py
@@ -19,7 +19,7 @@ __contributors__ = [
"Alex Yu",
]
__license__ = "MIT"
-__version__ = "0.11.3"
+__version__ = '0.12.0'
import base64
import calendar
diff --git a/python3/httplib2/__init__.py b/python3/httplib2/__init__.py
index 6dd22d7..b1b86f4 100644
--- a/python3/httplib2/__init__.py
+++ b/python3/httplib2/__init__.py
@@ -15,7 +15,7 @@ __contributors__ = [
"Alex Yu",
]
__license__ = "MIT"
-__version__ = "0.11.3"
+__version__ = '0.12.0'
import base64
import calendar
diff --git a/setup.py b/setup.py
index b2a7e64..3ac0729 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.11.3"
+VERSION = '0.12.0'
# `python setup.py test` uses existing Python environment, no virtualenv, no pip.