From 468f592a799d3db89193045665375c3508381a65 Mon Sep 17 00:00:00 2001 From: Craig Citro Date: Tue, 17 Mar 2015 15:57:17 -0700 Subject: [PATCH] Release v1.4.7. --- CHANGELOG.md | 9 +++++++++ oauth2client/__init__.py | 2 +- 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index babc063..e09bac6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,14 @@ # CHANGELOG +## v1.4.7 + +* Add support for Google Developer Shell credentials. +* Better handling of filesystem errors in credential refresh. +* python3 fixes +* Add `NO_GCE_CHECK` for skipping GCE detection. +* Better error messages on `InvalidClientSecretsError`. +* Comment cleanup on `run_flow`. + ## v1.4.6 * Add utility function to convert PKCS12 key to PEM. (#115) diff --git a/oauth2client/__init__.py b/oauth2client/__init__.py index b93b373..f992cff 100644 --- a/oauth2client/__init__.py +++ b/oauth2client/__init__.py @@ -1,6 +1,6 @@ """Client library for using OAuth2, especially with Google APIs.""" -__version__ = '1.4.6' +__version__ = '1.4.7' GOOGLE_AUTH_URI = 'https://accounts.google.com/o/oauth2/auth' GOOGLE_DEVICE_URI = 'https://accounts.google.com/o/oauth2/device/code'