Skip to content

Commit cf631a7

Browse files
committed
Release 0.9.2
1 parent d86146d commit cf631a7

File tree

4 files changed

+11
-3
lines changed

4 files changed

+11
-3
lines changed

CHANGELOG

+8
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
0.9.2
2+
3+
Fixes in this release:
4+
5+
https://github.com/jcgregorio/httplib2/pull/313
6+
7+
Fix incorrect ResponseNotReady exceptions, retry on transient errors.
8+
19
0.9.1
210

311
Fixes in this release:

python2/httplib2/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
"Sam Ruby",
2323
"Louis Nyffenegger"]
2424
__license__ = "MIT"
25-
__version__ = "0.9.1"
25+
__version__ = "0.9.2"
2626

2727
import re
2828
import sys

python3/httplib2/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
"Louis Nyffenegger",
2525
"Mark Pilgrim"]
2626
__license__ = "MIT"
27-
__version__ = "0.9.1"
27+
__version__ = "0.9.2"
2828

2929
import re
3030
import sys

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
import sys
66

77
pkgdir = {'': 'python%s' % sys.version_info[0]}
8-
VERSION = '0.9.1'
8+
VERSION = '0.9.2'
99

1010
setup(name='httplib2',
1111
version=VERSION,

0 commit comments

Comments
 (0)