Merge pull request #501 from jonparrott/cut-2.0.2

Release v2.0.2.
This commit is contained in:
Jon Wayne Parrott
2016-04-15 13:08:22 -07:00
2 changed files with 8 additions and 1 deletions

View File

@@ -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`

View File

@@ -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'