v0.11.2 release
diff --git a/CHANGELOG b/CHANGELOG
index 8b2c90a..9cfcc96 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,3 +1,8 @@
+0.11.2
+
+  proxy: py3 NameError basestring
+  https://github.com/httplib2/httplib2/pull/100
+
 0.11.1
 
   Fix HTTP(S)ConnectionWithTimeout AttributeError proxy_info
diff --git a/python2/httplib2/__init__.py b/python2/httplib2/__init__.py
index 49e3b99..2666397 100644
--- a/python2/httplib2/__init__.py
+++ b/python2/httplib2/__init__.py
@@ -23,7 +23,7 @@
                     "Louis Nyffenegger",
                     "Alex Yu"]
 __license__ = "MIT"
-__version__ = "0.11.1"
+__version__ = '0.11.2'
 
 import re
 import sys
diff --git a/python3/httplib2/__init__.py b/python3/httplib2/__init__.py
index dd88175..75859c6 100644
--- a/python3/httplib2/__init__.py
+++ b/python3/httplib2/__init__.py
@@ -23,7 +23,7 @@
     "Louis Nyffenegger",
     "Mark Pilgrim"]
 __license__ = "MIT"
-__version__ = "0.11.1"
+__version__ = '0.11.2'
 
 import re
 import sys
diff --git a/setup.py b/setup.py
index b779d1f..874bd62 100755
--- a/setup.py
+++ b/setup.py
@@ -2,7 +2,7 @@
 import sys
 
 pkgdir = {'': 'python%s' % sys.version_info[0]}
-VERSION = '0.11.1'
+VERSION = '0.11.2'
 
 setuptools.setup(
     name='httplib2',