From 823a543f41eec8e08c195140c149eb5f41565f1d Mon Sep 17 00:00:00 2001 From: Kenneth Reitz Date: Wed, 17 Nov 2010 20:58:50 -0500 Subject: [PATCH] Version bump (v0.9.2) --- setup.py | 2 +- tablib/core.py | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/setup.py b/setup.py index 577e4d0..e779457 100644 --- a/setup.py +++ b/setup.py @@ -19,7 +19,7 @@ required = [] setup( name='tablib', - version='0.9.1', + version='0.9.2', 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 7d3c94c..bd2d4ba 100644 --- a/tablib/core.py +++ b/tablib/core.py @@ -15,8 +15,8 @@ from tablib import formats __title__ = 'tablib' -__version__ = '0.9.1' -__build__ = 0x000901 +__version__ = '0.9.2' +__build__ = 0x000902 __author__ = 'Kenneth Reitz' __license__ = 'MIT' __copyright__ = 'Copyright 2010 Kenneth Reitz'