diff --git a/CHANGELOG.md b/CHANGELOG.md index 8fd788c85..0603d6723 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # 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 * Fix bad indent in `tools.run_flow()` (#301, bug was diff --git a/oauth2client/__init__.py b/oauth2client/__init__.py index 4dda02a43..f7c36c1bf 100644 --- a/oauth2client/__init__.py +++ b/oauth2client/__init__.py @@ -14,7 +14,7 @@ """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_DEVICE_URI = 'https://accounts.google.com/o/oauth2/device/code'