From 4a2ffbab026a79bb9fbc6d62defbfb13722a021b Mon Sep 17 00:00:00 2001 From: Jon Wayne Parrott Date: Fri, 15 Apr 2016 12:52:15 -0700 Subject: [PATCH] Release v2.0.2. --- CHANGELOG.md | 7 +++++++ oauth2client/__init__.py | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8f2a38fb4..3382c7060 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 d8ed98c8e..ed6017c19 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'