diff --git a/CHANGELOG.md b/CHANGELOG.md index a2b40a812..75057990f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,10 @@ # CHANGELOG +## v1.4.11 + +* Better environment detection with Managed VMs. +* Better OpenSSL detection in exotic environments. + ## v1.4.10 * Update the `OpenSSL` check to be less strict about finding `crypto.py` in diff --git a/oauth2client/__init__.py b/oauth2client/__init__.py index 017a9c1fc..f2841772f 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.10' +__version__ = '1.4.11' GOOGLE_AUTH_URI = 'https://accounts.google.com/o/oauth2/auth' GOOGLE_DEVICE_URI = 'https://accounts.google.com/o/oauth2/device/code'