From d0c8df95a3f7234414fe6b7df72cae52b55f6af8 Mon Sep 17 00:00:00 2001 From: Kenneth Reitz Date: Tue, 14 Sep 2010 00:02:14 -0400 Subject: [PATCH] Version bump. v0.6.3. --- setup.py | 2 +- tablib/core.py | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/setup.py b/setup.py index 5670078..02c84d3 100644 --- a/setup.py +++ b/setup.py @@ -18,7 +18,7 @@ if sys.argv[-1] == "publish": setup( name='tablib', - version='0.6.2', + version='0.6.3', description='Format agnostic tabular data library (XLS, JSON, YAML, CSV)', long_description=open('README.rst').read() + '\n\n' + open('HISTORY.rst').read(), diff --git a/tablib/core.py b/tablib/core.py index d359055..e4ceee1 100644 --- a/tablib/core.py +++ b/tablib/core.py @@ -21,8 +21,8 @@ from helpers import * # __all__ = ['Dataset', 'DataBook'] __name__ = 'tablib' -__version__ = '0.6.2' -__build__ = 0x000602 +__version__ = '0.6.3' +__build__ = 0x000603 __author__ = 'Kenneth Reitz' __license__ = 'MIT' __copyright__ = 'Copyright 2010 Kenneth Reitz'