Merge pull request #341 from thobrla/master

Release v1.5.2
This commit is contained in:
Danny Hermes
2015-11-18 12:33:02 -08:00
2 changed files with 8 additions and 1 deletions

View File

@@ -1,5 +1,12 @@
# CHANGELOG # CHANGELOG
## v1.5.2
* Add access token refresh error class that includes HTTP status (#310)
* Python3 compatibility fixes for Django (#316, #318)
* Fix incremental auth in flask_util (#322)
* Fall back to credential refresh on EDEADLK in multistore_file (#336)
## v1.5.1 ## v1.5.1
* Fix bad indent in `tools.run_flow()` (#301, bug was * Fix bad indent in `tools.run_flow()` (#301, bug was

View File

@@ -14,7 +14,7 @@
"""Client library for using OAuth2, especially with Google APIs.""" """Client library for using OAuth2, especially with Google APIs."""
__version__ = '1.5.1' __version__ = '1.5.2'
GOOGLE_AUTH_URI = 'https://accounts.google.com/o/oauth2/auth' GOOGLE_AUTH_URI = 'https://accounts.google.com/o/oauth2/auth'
GOOGLE_DEVICE_URI = 'https://accounts.google.com/o/oauth2/device/code' GOOGLE_DEVICE_URI = 'https://accounts.google.com/o/oauth2/device/code'