From 450f3be97da3fcec5ea7900f8cab1863e335a7f6 Mon Sep 17 00:00:00 2001 From: Kenneth Reitz Date: Sun, 20 Mar 2011 16:39:02 -0400 Subject: [PATCH] Version Bump --- clint/__init__.py | 4 ++-- setup.py | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/clint/__init__.py b/clint/__init__.py index 65f63dd..1bc17dd 100644 --- a/clint/__init__.py +++ b/clint/__init__.py @@ -19,8 +19,8 @@ from .pipes import piped_in __title__ = 'clint' -__version__ = '0.1.0' -__build__ = 0x000100 +__version__ = '0.1.1' +__build__ = 0x000101 __author__ = 'Kenneth Reitz' __license__ = 'ISC' __copyright__ = 'Copyright 2011 Kenneth Reitz' diff --git a/setup.py b/setup.py index 22eb3f8..757ce17 100644 --- a/setup.py +++ b/setup.py @@ -19,7 +19,7 @@ required = [] setup( name='clint', - version='0.1.0', + version='0.1.1', description='Python Command-line Application Tools', long_description=open('README.rst').read() + '\n\n' + open('HISTORY.rst').read(),