Skip to content

Commit b1c84c3

Browse files
committed
version bump to 0.5.1
1 parent 483b7cb commit b1c84c3

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

README.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -288,6 +288,7 @@ and numeric data, ``tabulate`` appears to be slower than
288288
Version history
289289
---------------
290290

291+
- 0.5.1: Fix README.rst formatting.
291292
- 0.5: ANSI color sequences. Printing dicts of iterables and Pandas' dataframes.
292293
- 0.4.4: Python 2.6 support
293294
- 0.4.3: Bug fix, None as a missing value

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
LONG_DESCRIPTION = open("README.rst").read().replace("`_", "`")
99

1010
setup(name='tabulate',
11-
version='0.5',
11+
version='0.5.1',
1212
description='Pretty-print tabular data',
1313
long_description=LONG_DESCRIPTION,
1414
author='Sergey Astanin',

tabulate.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727

2828

2929
__all__ = ["tabulate"]
30-
__version__ = "0.5"
30+
__version__ = "0.5.1"
3131

3232

3333
Line = namedtuple("Line", ["begin", "hline", "sep", "end"])

0 commit comments

Comments
 (0)