From 6b7f8ea13c2b9c72587efa6205854773cd3d1e62 Mon Sep 17 00:00:00 2001 From: Craig Citro Date: Tue, 19 May 2015 14:50:27 -0700 Subject: [PATCH] Update for v1.4.11 release. --- CHANGELOG.md | 5 +++++ oauth2client/__init__.py | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a2b40a8..7505799 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 017a9c1..f284177 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'