Skip to content
This repository has been archived by the owner on Jun 30, 2020. It is now read-only.

Commit

Permalink
RELASE v0.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
star:Kenneth Reitz committed Mar 23, 2011
1 parent 06af338 commit dda5613
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 6 deletions.
4 changes: 2 additions & 2 deletions HISTORY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@ History
++++++++++++++++++

* Column Printing!!!
* Disable Colors
* (Auto/Manual) Disabling of Colors
* Smarter Colors
* max_width, min_width
* Strip cli colors
* bugfixes
* bug fixes


0.1.2 (2011-03-21)
Expand Down
4 changes: 2 additions & 2 deletions clint/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@


__title__ = 'clint'
__version__ = '0.1.2'
__build__ = 0x000102
__version__ = '0.2.0'
__build__ = 0x000200
__author__ = 'Kenneth Reitz'
__license__ = 'ISC'
__copyright__ = 'Copyright 2011 Kenneth Reitz'
Expand Down
File renamed without changes.
3 changes: 2 additions & 1 deletion clint/textui/core.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,11 @@

from .progress import progressbar
from .formatters import max_width, min_width
from .cols import columns
from ..utils import tsplit


__all__ = ('puts', 'puts_err', 'indent', 'progressbar', 'max_width', 'min_width')
__all__ = ('puts', 'puts_err', 'indent', 'progressbar', 'columns', 'max_width', 'min_width')


STDOUT = sys.stdout.write
Expand Down
2 changes: 1 addition & 1 deletion examples/text_width.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
sys.path.insert(0, os.path.abspath('..'))

from clint.textui import puts, colored
from clint.textui.columns import columns
from clint.textui import columns

lorem = 'Lorem ipsum dolor sit amet, consehdfhdfhdfhdfhdfhctetur adi pisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.'

Expand Down

0 comments on commit dda5613

Please sign in to comment.