Release v0.3.2
diff --git a/CHANGELOG.rst b/CHANGELOG.rst
index 510a2be..4d24b85 100644
--- a/CHANGELOG.rst
+++ b/CHANGELOG.rst
@@ -1,6 +1,11 @@
 Changelog
 =========
 
+v0.3.2
+------
+
+- Fixed an issue where an `ImportError` would occur if `google.oauth2` was imported before `google.auth`. (#88)
+
 v0.3.1
 ------
 
diff --git a/docs/conf.py b/docs/conf.py
index 7b820b8..97e2f96 100644
--- a/docs/conf.py
+++ b/docs/conf.py
@@ -64,9 +64,9 @@
 # built documents.
 #
 # The short X.Y version.
-version = '0.0.1a'
+version = '0.3.2'
 # The full version, including alpha/beta/rc tags.
-release = '0.0.1a'
+release = '0.3.2'
 
 # The language for content autogenerated by Sphinx. Refer to documentation
 # for a list of supported languages.
diff --git a/setup.py b/setup.py
index 1796e4a..0dabdb6 100644
--- a/setup.py
+++ b/setup.py
@@ -29,7 +29,7 @@
 
 setup(
     name='google-auth',
-    version='0.3.1',
+    version='0.3.2',
     author='Google Cloud Platform',
     author_email='jonwayne+google-auth@google.com',
     description='Google Authentication Library',