From 3042ad2554d20a8c02c0714b58adcba7ec842d88 Mon Sep 17 00:00:00 2001 From: Travis Hobrla Date: Wed, 18 Nov 2015 12:14:12 -0800 Subject: [PATCH] Release v1.5.2 --- CHANGELOG.md | 7 +++++++ oauth2client/__init__.py | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) 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'