Skip to content

Commit 2b45af1

Browse files
committed
Generated 0.1.0 release while on wrong branch. Updating to 0.1.1 to fix
1 parent 104a68d commit 2b45af1

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"""
66
from setuptools import setup
77

8-
VERSION = '0.1.0'
8+
VERSION = '0.1.1'
99
DESCRIPTION = "python-tableformatter - Tabular data formatter allowing printing from both arbitrary tuples of strings or object inspection"
1010
LONG_DESCRIPTION = """tableformatter is a tabular data formatter allowing printing from both arbitrary tuples of strings or object inspection.
1111
It converts your data into a string form suitable for pretty-printing as a table. The goal is to make it quick and easy

tableformatter.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ def __subclasshook__(cls, C):
3535

3636
ANSI_ESCAPE_RE = re.compile(r'\x1b[^m]*m')
3737
TAB_WIDTH = 4
38-
__version__ = '0.1.0'
38+
__version__ = '0.1.1'
3939
ELLIPSIS = '…'
4040

4141

0 commit comments

Comments
 (0)