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'