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'