From cebbc7e2f50dccc4a3a26dd505f29a65db471917 Mon Sep 17 00:00:00 2001 From: Danny Hermes Date: Mon, 14 Sep 2015 13:27:12 -0700 Subject: [PATCH] Cutting release 1.5.1. --- CHANGELOG.md | 5 +++++ oauth2client/__init__.py | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 5f4a53a..8fd788c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,10 @@ # CHANGELOG +## v1.5.1 + +* Fix bad indent in `tools.run_flow()` (#301, bug was + introduced when switching from 2 space indents to 4) + ## v1.5.0 * Fix (more like clarify) `bytes` / `str` handling in crypto diff --git a/oauth2client/__init__.py b/oauth2client/__init__.py index b989c5f..4dda02a 100644 --- a/oauth2client/__init__.py +++ b/oauth2client/__init__.py @@ -14,7 +14,7 @@ """Client library for using OAuth2, especially with Google APIs.""" -__version__ = '1.5.0' +__version__ = '1.5.1' GOOGLE_AUTH_URI = 'https://accounts.google.com/o/oauth2/auth' GOOGLE_DEVICE_URI = 'https://accounts.google.com/o/oauth2/device/code'