diff --git a/README.rst b/README.rst index 49be95f..317d989 100644 --- a/README.rst +++ b/README.rst @@ -8,13 +8,15 @@ Features -------- - If you call ``disable()``, all future calls to colors will be ignored. -- If the current process is not in a TTY, no colors will be displayed. +- If the current process is not in a TTY (e.g. being piped), no colors will be displayed. - Length of ColoredStrings can be properly calculated. - Powered by colorama. Usage is simple --------------- +:: + # red is red, white is white. >>> print '{red} white'.format(red=crayons.red('red')) red white diff --git a/setup.py b/setup.py index a059de0..85c3469 100755 --- a/setup.py +++ b/setup.py @@ -30,7 +30,7 @@ required = [ setup( name='crayons', - version='0.1.0', + version='0.1.1', description='TextUI colors for Python.', long_description=long_description, author='Kenneth Reitz',