From 8082c4ad43a1f900bd3b998cb028fbeaf74ec753 Mon Sep 17 00:00:00 2001 From: Kenneth Reitz Date: Thu, 4 Nov 2010 12:07:37 -0400 Subject: [PATCH] Version bump (v0.9.1). --- HISTORY.rst | 5 +++++ setup.py | 2 +- tablib/core.py | 4 ++-- 3 files changed, 8 insertions(+), 3 deletions(-) diff --git a/HISTORY.rst b/HISTORY.rst index 247552a..d467712 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -1,6 +1,11 @@ History ------- +0.9.1 (2010-11-04) +++++++++++++++++++ + +* Minor reference shadowing bugfix + 0.9.0 (2010-11-04) ++++++++++++++++++ diff --git a/setup.py b/setup.py index a5c5588..577e4d0 100644 --- a/setup.py +++ b/setup.py @@ -19,7 +19,7 @@ required = [] setup( name='tablib', - version='0.9.0', + version='0.9.1', 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 c71dfb7..b5c2526 100644 --- a/tablib/core.py +++ b/tablib/core.py @@ -15,8 +15,8 @@ from tablib import formats __title__ = 'tablib' -__version__ = '0.9.0' -__build__ = 0x000900 +__version__ = '0.9.1' +__build__ = 0x000901 __author__ = 'Kenneth Reitz' __license__ = 'MIT' __copyright__ = 'Copyright 2010 Kenneth Reitz'