Skip to content

Commit a42bfb4

Browse files
committed
Updated version to 0.1.4
1 parent 6682b73 commit a42bfb4

File tree

3 files changed

+5
-2
lines changed

3 files changed

+5
-2
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
## 01.4 (TBD, 2018)
2+
* TBD
3+
14
## 0.1.3 (August 18, 2018)
25
* Improved support for Pandas DataFrame, Numpy RecordArray, and dict tabular data types
36

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.3'
8+
VERSION = '0.1.4'
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
@@ -36,7 +36,7 @@ def __subclasshook__(cls, C):
3636

3737
ANSI_ESCAPE_RE = re.compile(r'\x1b[^m]*m')
3838
TAB_WIDTH = 4
39-
__version__ = '0.1.3'
39+
__version__ = '0.1.4'
4040
ELLIPSIS = '…'
4141

4242

0 commit comments

Comments
 (0)