From 0797ec67d4a4c6c145d86d0b7dca9d3b03c6d8e6 Mon Sep 17 00:00:00 2001 From: Kenneth Reitz Date: Mon, 31 Jan 2011 00:58:16 -0500 Subject: [PATCH] Prepping for new release (0.9.3) --- HISTORY.rst | 3 ++- README.rst | 1 + tablib/core.py | 4 ++-- 3 files changed, 5 insertions(+), 3 deletions(-) diff --git a/HISTORY.rst b/HISTORY.rst index 43a8cda..95b9328 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -1,11 +1,12 @@ History ------- -0.9.3 (2010-11-2?) +0.9.3 (2011-01-31) ++++++++++++++++++ * Databook duplication leak fix. * HTML Table output. +* Added column sorting. 0.9.2 (2010-11-17) diff --git a/README.rst b/README.rst index 00b6345..f974248 100644 --- a/README.rst +++ b/README.rst @@ -18,6 +18,7 @@ Output formats supported: - Excel (Sets + Books) - JSON (Sets + Books) - YAML (Sets + Books) +- HTML (Sets) - TSV (Sets) - CSV (Sets) diff --git a/tablib/core.py b/tablib/core.py index c7e9dd5..6eb57db 100644 --- a/tablib/core.py +++ b/tablib/core.py @@ -15,8 +15,8 @@ from tablib import formats __title__ = 'tablib' -__version__ = '0.9.2' -__build__ = 0x000902 +__version__ = '0.9.3' +__build__ = 0x000903 __author__ = 'Kenneth Reitz' __license__ = 'MIT' __copyright__ = 'Copyright 2011 Kenneth Reitz'