diff options
| author | Kenneth Reitz <me@kennethreitz.com> | 2011-01-31 00:58:16 -0500 |
|---|---|---|
| committer | Kenneth Reitz <me@kennethreitz.com> | 2011-01-31 00:58:16 -0500 |
| commit | 0797ec67d4a4c6c145d86d0b7dca9d3b03c6d8e6 (patch) | |
| tree | 39a641e45a1dfbcd1f87e606ecb1fd7f723c9efd | |
| parent | 34415b89b858075323b7a2d034c06b57dd26bdc7 (diff) | |
| download | tablib-0797ec67d4a4c6c145d86d0b7dca9d3b03c6d8e6.tar.gz | |
Prepping for new release (0.9.3)
| -rw-r--r-- | HISTORY.rst | 3 | ||||
| -rw-r--r-- | README.rst | 1 | ||||
| -rw-r--r-- | 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) @@ -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' |
