diff --git a/HISTORY.rst b/HISTORY.rst index 79ac1f9..fdc3b9c 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -11,13 +11,18 @@ History **Improvements** -- New import/export interface (``Dataset.export()``, ``Dataset.import_()``). +- New import/export interface (``Dataset.export()``, ``Dataset.load()``). - CSV custom delimiter support (``Dataset.export('csv', delimiter='$')``). - Adding ability to remove duplicates to all rows in a dataset (``Dataset.remove_duplicates()``). - Added a mechanism to avoid ``datetime.datetime`` issues when serializing data. +- New ``detect_format()`` function (mostly for internal use). - Update the vendored unicodecsv to fix ``None`` handling. - Only freeze the headers row, not the headers columns (xls). +**Breaking Changes** + +- ``detect()`` function removed. + **Bugfixes** - Fix XLSX import. diff --git a/LICENSE b/LICENSE index e8adc0e..068005b 100644 --- a/LICENSE +++ b/LICENSE @@ -1,4 +1,4 @@ -Copyright 2011 Kenneth Reitz +Copyright 2016 Kenneth Reitz Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/README.rst b/README.rst index 925e027..e17e488 100644 --- a/README.rst +++ b/README.rst @@ -23,6 +23,7 @@ Output formats supported: - YAML (Sets + Books) - HTML (Sets) - TSV (Sets) +- OSD (Sets) - CSV (Sets) - DBF (Sets) @@ -141,9 +142,6 @@ To install tablib, simply: :: $ pip install tablib -Or, if you absolutely must: :: - - $ easy_install tablib Contribute ---------- diff --git a/tablib/core.py b/tablib/core.py index 306afe7..08b2e31 100644 --- a/tablib/core.py +++ b/tablib/core.py @@ -5,7 +5,7 @@ This module implements the central Tablib objects. - :copyright: (c) 2014 by Kenneth Reitz. + :copyright: (c) 2016 by Kenneth Reitz. :license: MIT, see LICENSE for more details. """ @@ -18,11 +18,11 @@ from tablib.compat import OrderedDict, unicode __title__ = 'tablib' -__version__ = '0.10.0' -__build__ = 0x001000 +__version__ = '0.11.0' +__build__ = 0x001100 __author__ = 'Kenneth Reitz' __license__ = 'MIT' -__copyright__ = 'Copyright 2014 Kenneth Reitz' +__copyright__ = 'Copyright 2016 Kenneth Reitz' __docformat__ = 'restructuredtext'