From 13df32316f2d043d00d40ddb51c858c5d9b1812b Mon Sep 17 00:00:00 2001 From: Jason Piper Date: Fri, 14 Mar 2014 11:35:32 +0000 Subject: [PATCH] 0.3.5 --- HISTORY.rst | 5 +++++ clint/__init__.py | 4 ++-- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/HISTORY.rst b/HISTORY.rst index ecccc8b..c223e69 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -1,6 +1,11 @@ History ------- +0.3.5 ++++++ +* progress.bar is now a context manager - doesn't require an iterable anymore (thanks to @jric) +* Bug fixes + 0.3.4 +++++ * Fixed Python 3 basestring deprecation diff --git a/clint/__init__.py b/clint/__init__.py index 9877b0c..913c269 100644 --- a/clint/__init__.py +++ b/clint/__init__.py @@ -26,8 +26,8 @@ __title__ = 'clint' -__version__ = '0.3.4' -__build__ = 0x000304 +__version__ = '0.3.5' +__build__ = 0x000305 __author__ = 'Kenneth Reitz' __license__ = 'ISC' __copyright__ = 'Copyright 2012 Kenneth Reitz'