diff --git a/HISTORY.rst b/HISTORY.rst index 1724339..f545a4a 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -1,10 +1,10 @@ History ------- -0.9.6 -+++++ +0.9.6 (2011-05-12) +++++++++++++++++++ -* `seperators` renamed to `separators` +* ``seperators`` renamed to ``separators`` * Full unicode CSV support diff --git a/docs/conf.py b/docs/conf.py index a1bdbd6..01f4933 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -48,7 +48,7 @@ copyright = u'2011, Kenneth Reitz. Styles (modified) © Armin Ronacher' # built documents. # # The short X.Y version. -version = '0.9.5' +version = '0.9.6' # The full version, including alpha/beta/rc tags. release = version diff --git a/setup.py b/setup.py index 2aa532a..bb7ef54 100644 --- a/setup.py +++ b/setup.py @@ -22,7 +22,7 @@ if sys.version_info[:2] < (2,6): setup( name='tablib', - version='0.9.5', + version='0.9.6', description='Format agnostic tabular data library (XLS, JSON, YAML, CSV)', long_description=open('README.rst').read() + '\n\n' + open('HISTORY.rst').read(), @@ -33,7 +33,8 @@ setup( 'tablib', 'tablib.formats', 'tablib.packages', 'tablib.packages.xlwt', - 'tablib.packages.yaml', + 'tablib.packages.yaml', + 'tablib.packages.unicodecsv' ], install_requires=required, license='MIT',