From d043fd0a560fd45f97d7b528cb82d74f6576d1b1 Mon Sep 17 00:00:00 2001 From: Kenneth Reitz Date: Mon, 21 Mar 2011 19:06:53 -0400 Subject: [PATCH] v0.1.2 --- HISTORY.rst | 4 ++++ clint/__init__.py | 4 ++-- setup.py | 2 +- test_clint.py | 9 --------- 4 files changed, 7 insertions(+), 12 deletions(-) diff --git a/HISTORY.rst b/HISTORY.rst index 992bdaa..3fab130 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -16,3 +16,7 @@ History * Lots of Examples +0.1.2 (2011-03-21) +++++++++++++++++++ + +* Bugfixes \ No newline at end of file diff --git a/clint/__init__.py b/clint/__init__.py index 1bc17dd..a056910 100644 --- a/clint/__init__.py +++ b/clint/__init__.py @@ -19,8 +19,8 @@ from .pipes import piped_in __title__ = 'clint' -__version__ = '0.1.1' -__build__ = 0x000101 +__version__ = '0.1.2' +__build__ = 0x000102 __author__ = 'Kenneth Reitz' __license__ = 'ISC' __copyright__ = 'Copyright 2011 Kenneth Reitz' diff --git a/setup.py b/setup.py index 757ce17..5eadec0 100644 --- a/setup.py +++ b/setup.py @@ -19,7 +19,7 @@ required = [] setup( name='clint', - version='0.1.1', + version='0.1.2', description='Python Command-line Application Tools', long_description=open('README.rst').read() + '\n\n' + open('HISTORY.rst').read(), diff --git a/test_clint.py b/test_clint.py index 477dcd7..cede7da 100755 --- a/test_clint.py +++ b/test_clint.py @@ -17,15 +17,6 @@ class TablibTestCase(unittest.TestCas): pass - def test_tsplit(self): - from clint.utils import tsplit - - s = 'thing1,thing2-thing3/thing4*thing5' - - _s = tsplit(s, [',-/*']) - self. - - if __name__ == '__main__': unittest.main()