From c4edaa2ca856c99f56a5a12ae00ca7f2c432ef10 Mon Sep 17 00:00:00 2001 From: Kenneth Reitz Date: Mon, 4 Oct 2010 11:55:17 -0400 Subject: [PATCH 1/3] Appended history. --- HISTORY.rst | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/HISTORY.rst b/HISTORY.rst index d380034..350cb6f 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -1,7 +1,14 @@ History ======= -0.8.2 (2010-09-28) +0.8.3 (2010-10-04) +------------------ + +* Ability to append new column passing a callable + as the value that will be applied to every row. + + +0.8.2 (2010-10-04) ------------------ * Added alignment wrapping to written cells. * Added separator support to XLS. From 41a7a5d32991c80899a3a900cbb63ffd4c577126 Mon Sep 17 00:00:00 2001 From: Kenneth Reitz Date: Mon, 4 Oct 2010 11:55:26 -0400 Subject: [PATCH 2/3] No cli app at this time. --- setup.py | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/setup.py b/setup.py index 1f55202..a297169 100644 --- a/setup.py +++ b/setup.py @@ -17,7 +17,7 @@ if sys.argv[-1] == "publish": setup( name='tablib', - version='0.8.2', + version='0.8.3', description='Format agnostic tabular data library (XLS, JSON, YAML, CSV)', long_description=open('README.rst').read() + '\n\n' + open('HISTORY.rst').read(), @@ -35,9 +35,9 @@ setup( 'Programming Language :: Python :: 2.6', 'Programming Language :: Python :: 2.7', ), - entry_points={ - 'console_scripts': [ - 'tabbed = tablib.cli:start', - ], - } + # entry_points={ + # 'console_scripts': [ + # 'tabbed = tablib.cli:start', + # ], + # } ) From 1ea793112cdbc7328e37138e12aa0bfa8cedd9ea Mon Sep 17 00:00:00 2001 From: Kenneth Reitz Date: Mon, 4 Oct 2010 11:55:35 -0400 Subject: [PATCH 3/3] Version Bump (v0.8.3) --- tablib/core.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tablib/core.py b/tablib/core.py index 90ef2b0..69e7549 100644 --- a/tablib/core.py +++ b/tablib/core.py @@ -7,8 +7,8 @@ from tablib.formats import FORMATS as formats __title__ = 'tablib' -__version__ = '0.8.1' -__build__ = 0x000801 +__version__ = '0.8.3' +__build__ = 0x000803 __author__ = 'Kenneth Reitz' __license__ = 'MIT' __copyright__ = 'Copyright 2010 Kenneth Reitz'