Skip to content

Commit

Permalink
Release 0.9.2
Browse files Browse the repository at this point in the history
  • Loading branch information
jcgregorio committed Sep 28, 2015
1 parent d86146d commit cf631a7
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 3 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -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:
Expand Down
2 changes: 1 addition & 1 deletion python2/httplib2/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
"Sam Ruby",
"Louis Nyffenegger"]
__license__ = "MIT"
__version__ = "0.9.1"
__version__ = "0.9.2"

import re
import sys
Expand Down
2 changes: 1 addition & 1 deletion python3/httplib2/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
"Louis Nyffenegger",
"Mark Pilgrim"]
__license__ = "MIT"
__version__ = "0.9.1"
__version__ = "0.9.2"

import re
import sys
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down

0 comments on commit cf631a7

Please sign in to comment.