aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSergey Shepelev <temotor@gmail.com>2019-02-14 21:38:07 +0500
committerSergey Shepelev <temotor@gmail.com>2019-02-17 13:28:53 +0500
commit23a7e13fe24ee33855263dd947484b14dcb169fa (patch)
tree71607fedd0ad5a5cb99fd37e612c71378066e84a
parent724c6d01a4952fee3c77a4aae77108a144524098 (diff)
downloadplatform_external_python_httplib2-23a7e13fe24ee33855263dd947484b14dcb169fa.tar.gz
platform_external_python_httplib2-23a7e13fe24ee33855263dd947484b14dcb169fa.tar.bz2
platform_external_python_httplib2-23a7e13fe24ee33855263dd947484b14dcb169fa.zip
v0.12.1 release
-rw-r--r--CHANGELOG7
-rw-r--r--python2/httplib2/__init__.py2
-rw-r--r--python3/httplib2/__init__.py2
-rwxr-xr-xsetup.py2
4 files changed, 9 insertions, 4 deletions
diff --git a/CHANGELOG b/CHANGELOG
index e7fea8a..fc9ef77 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,6 +1,11 @@
0.12.1
- Add support for Python 3.7
+ Catch socket timeouts and clear dead connection
+ https://github.com/httplib2/httplib2/issues/18
+ https://github.com/httplib2/httplib2/pull/111
+
+ Officially support Python 3.7 (package metadata)
+ https://github.com/httplib2/httplib2/issues/123
0.12.0
diff --git a/python2/httplib2/__init__.py b/python2/httplib2/__init__.py
index 2059063..fee091d 100644
--- a/python2/httplib2/__init__.py
+++ b/python2/httplib2/__init__.py
@@ -19,7 +19,7 @@ __contributors__ = [
"Alex Yu",
]
__license__ = "MIT"
-__version__ = '0.12.0'
+__version__ = '0.12.1'
import base64
import calendar
diff --git a/python3/httplib2/__init__.py b/python3/httplib2/__init__.py
index d98657f..8b64c41 100644
--- a/python3/httplib2/__init__.py
+++ b/python3/httplib2/__init__.py
@@ -15,7 +15,7 @@ __contributors__ = [
"Alex Yu",
]
__license__ = "MIT"
-__version__ = '0.12.0'
+__version__ = '0.12.1'
import base64
import calendar
diff --git a/setup.py b/setup.py
index d4d2d14..7001022 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.12.0'
+VERSION = '0.12.1'
# `python setup.py test` uses existing Python environment, no virtualenv, no pip.