From cf631a73e2f3f43897b65206127ced82382d35f5 Mon Sep 17 00:00:00 2001 From: Joe Gregorio Date: Mon, 28 Sep 2015 09:49:57 -0400 Subject: [PATCH] Release 0.9.2 --- CHANGELOG | 8 ++++++++ python2/httplib2/__init__.py | 2 +- python3/httplib2/__init__.py | 2 +- setup.py | 2 +- 4 files changed, 11 insertions(+), 3 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index 9e6688a..67f8421 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,3 +1,11 @@ +0.9.2 + + Fixes in this release: + + https://github.com/jcgregorio/httplib2/pull/313 + + Fix incorrect ResponseNotReady exceptions, retry on transient errors. + 0.9.1 Fixes in this release: diff --git a/python2/httplib2/__init__.py b/python2/httplib2/__init__.py index f0d17a1..6fa3cc6 100644 --- a/python2/httplib2/__init__.py +++ b/python2/httplib2/__init__.py @@ -22,7 +22,7 @@ "Sam Ruby", "Louis Nyffenegger"] __license__ = "MIT" -__version__ = "0.9.1" +__version__ = "0.9.2" import re import sys diff --git a/python3/httplib2/__init__.py b/python3/httplib2/__init__.py index ad5cc7f..3ce019e 100644 --- a/python3/httplib2/__init__.py +++ b/python3/httplib2/__init__.py @@ -24,7 +24,7 @@ "Louis Nyffenegger", "Mark Pilgrim"] __license__ = "MIT" -__version__ = "0.9.1" +__version__ = "0.9.2" import re import sys diff --git a/setup.py b/setup.py index 4240f6c..fb00ed2 100755 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ import sys pkgdir = {'': 'python%s' % sys.version_info[0]} -VERSION = '0.9.1' +VERSION = '0.9.2' setup(name='httplib2', version=VERSION,