summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIuri de Silvio <iurisilvio@gmail.com>2017-01-23 19:10:36 -0200
committerIuri de Silvio <iurisilvio@gmail.com>2017-01-23 19:10:36 -0200
commit6afe716d64f4f6110eae537746a6a49276077c6d (patch)
treedb2c4ac792208ecc447e29731b2a0e91eaa6137b
parent3d44bdec40f2572c985f763450aefce37b60380a (diff)
downloadtablib-6afe716d64f4f6110eae537746a6a49276077c6d.tar.gz
Version bump: 0.11.4v0.11.4
-rw-r--r--HISTORY.rst10
-rw-r--r--tablib/core.py4
2 files changed, 10 insertions, 4 deletions
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'