Release 0.9.2
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,