summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKenneth Reitz <me@kennethreitz.com>2011-05-13 01:13:25 -0400
committerKenneth Reitz <me@kennethreitz.com>2011-05-13 01:13:25 -0400
commite5259cbb58092184fdeb4d0635c57480164cb1ce (patch)
tree184788c39447158e700e175323ab05707e666b74
parent56ef89424f923e29dfbedf29429dac0c2ecdc341 (diff)
downloadtablib-e5259cbb58092184fdeb4d0635c57480164cb1ce.tar.gz
version bump
-rw-r--r--docs/conf.py2
-rw-r--r--setup.py2
-rw-r--r--tablib/core.py4
3 files changed, 4 insertions, 4 deletions
diff --git a/docs/conf.py b/docs/conf.py
index 01f4933..5a42816 100644
--- a/docs/conf.py
+++ b/docs/conf.py
@@ -48,7 +48,7 @@ copyright = u'2011, Kenneth Reitz. Styles (modified) &copy; Armin Ronacher'
# built documents.
#
# The short X.Y version.
-version = '0.9.6'
+version = '0.9.7'
# The full version, including alpha/beta/rc tags.
release = version
diff --git a/setup.py b/setup.py
index 850f915..307307f 100644
--- a/setup.py
+++ b/setup.py
@@ -22,7 +22,7 @@ if sys.version_info[:2] < (2,6):
setup(
name='tablib',
- version='0.9.6',
+ version='0.9.7',
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 6ab0fc5..03547ff 100644
--- a/tablib/core.py
+++ b/tablib/core.py
@@ -19,8 +19,8 @@ from tablib.compat import OrderedDict
__title__ = 'tablib'
-__version__ = '0.9.4'
-__build__ = 0x000904
+__version__ = '0.9.7'
+__build__ = 0x000907
__author__ = 'Kenneth Reitz'
__license__ = 'MIT'
__copyright__ = 'Copyright 2011 Kenneth Reitz'