From e500773da3a84a683a92ee6abe70008f9667ce96 Mon Sep 17 00:00:00 2001 From: "star:Kenneth Reitz" Date: Wed, 6 Apr 2011 13:06:14 -0400 Subject: [PATCH] version bump (v0.2.3) --- HISTORY.rst | 16 ++++++++++++---- clint/__init__.py | 4 ++-- 2 files changed, 14 insertions(+), 6 deletions(-) diff --git a/HISTORY.rst b/HISTORY.rst index 2e1cb54..19486bd 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -1,13 +1,21 @@ History ------- +0.2.3 ++++++ + +* Only init colors if they are used (iPython compatability) +* New progress module +* Various bugfixes + + 0.2.2 +++++ -Auto Color Disabling -Progress Namespace Change -New Progress Bars -textui.puts newline fix +* Auto Color Disabling +* Progress Namespace Change +* New Progress Bars +* textui.puts newline fix 0.2.1 (2011-03-24) diff --git a/clint/__init__.py b/clint/__init__.py index 29ec2d2..aeda450 100644 --- a/clint/__init__.py +++ b/clint/__init__.py @@ -19,8 +19,8 @@ from .pipes import piped_in __title__ = 'clint' -__version__ = '0.2.1' -__build__ = 0x000201 +__version__ = '0.2.3' +__build__ = 0x000203 __author__ = 'Kenneth Reitz' __license__ = 'ISC' __copyright__ = 'Copyright 2011 Kenneth Reitz'