diff --git a/HISTORY.rst b/HISTORY.rst index 0e3e010..a90a21b 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -1,10 +1,16 @@ History ------- -0.11.4 (???) -++++++++++++ +0.11.4 (2017-01-23) ++++++++++++++++++++ + +- Use built-in `json` package if available +- Support Python 3.5+ in classifiers + +** Bugfixes ** - Fixed textual representation for Dataset with no headers +- Handle decimal types 0.11.3 (2016-02-16) +++++++++++++++++++ diff --git a/tablib/core.py b/tablib/core.py index c5faad3..c44c6ac 100644 --- a/tablib/core.py +++ b/tablib/core.py @@ -18,8 +18,8 @@ from tablib.compat import OrderedDict, unicode __title__ = 'tablib' -__version__ = '0.11.3' -__build__ = 0x001103 +__version__ = '0.11.4' +__build__ = 0x001104 __author__ = 'Kenneth Reitz' __license__ = 'MIT' __copyright__ = 'Copyright 2016 Kenneth Reitz'