aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJon Wayne Parrott <jon.wayne.parrott@gmail.com>2016-04-15 12:52:15 -0700
committerJon Wayne Parrott <jon.wayne.parrott@gmail.com>2016-04-15 12:52:15 -0700
commit4a2ffbab026a79bb9fbc6d62defbfb13722a021b (patch)
treedb721b3d3022fb2d25c4a4161d5c3e85d883fa5c
parent421ae37073f4cd81b8d1cb3eef2de275a6b56aeb (diff)
downloadoauth2client-4a2ffbab026a79bb9fbc6d62defbfb13722a021b.tar.gz
Release v2.0.2.
-rw-r--r--CHANGELOG.md7
-rw-r--r--oauth2client/__init__.py2
2 files changed, 8 insertions, 1 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 8f2a38f..3382c70 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,5 +1,12 @@
# CHANGELOG
+## v2.0.2
+
+* Fix issue where `flask_util.UserOAuth2.required` would accept expired credentials (#452).
+* Fix issue where `flask_util` would fill the session with `Flow` objects (#498).
+* Fix issue with Python 3 binary strings in `Flow.step2_exchange` (#446).
+* Improve test coverage to 100%.
+
## v2.0.1
* Making scopes optional on Google Compute Engine `AppAssertionCredentials`
diff --git a/oauth2client/__init__.py b/oauth2client/__init__.py
index d8ed98c..ed6017c 100644
--- a/oauth2client/__init__.py
+++ b/oauth2client/__init__.py
@@ -14,7 +14,7 @@
"""Client library for using OAuth2, especially with Google APIs."""
-__version__ = '2.0.1'
+__version__ = '2.0.2'
GOOGLE_AUTH_URI = 'https://accounts.google.com/o/oauth2/v2/auth'
GOOGLE_DEVICE_URI = 'https://accounts.google.com/o/oauth2/device/code'