Release v1.4.7.

This commit is contained in:
Craig Citro
2015-03-17 15:57:17 -07:00
parent 75044598ad
commit 468f592a79
2 changed files with 10 additions and 1 deletions

View File

@@ -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)

View File

@@ -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'