diff options
| author | Kenneth Reitz <me@kennethreitz.org> | 2016-02-16 08:46:37 -0500 |
|---|---|---|
| committer | Kenneth Reitz <me@kennethreitz.org> | 2016-02-16 08:46:37 -0500 |
| commit | 9ca1d4ec5401f4e438a313eed5da25ba48590516 (patch) | |
| tree | 601b50ec80638feeb174f5045d351ee8bf424f47 | |
| parent | 9ba045184352dd6330da971ef55f2088fcdff55e (diff) | |
| parent | abbb4e32d81312df5be33f4f285eab5023a78977 (diff) | |
| download | tablib-9ca1d4ec5401f4e438a313eed5da25ba48590516.tar.gz | |
Merge pull request #220 from kennethreitz/master
Master
| -rw-r--r-- | HISTORY.rst | 8 | ||||
| -rw-r--r-- | docs/conf.py | 2 | ||||
| -rw-r--r-- | tablib/core.py | 4 |
3 files changed, 11 insertions, 3 deletions
diff --git a/HISTORY.rst b/HISTORY.rst index 2a74bb6..352311e 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -1,6 +1,14 @@ History ------- +0.11.2 (2016-02-16) ++++++++++++++++++++ + +**Bugfixes** + +- Fix export only formats. +- Fix for xlsx output. + 0.11.1 (2016-02-07) +++++++++++++++++++ diff --git a/docs/conf.py b/docs/conf.py index a9248fc..1642931 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -41,7 +41,7 @@ master_doc = 'index' # General information about the project. project = u'Tablib' -copyright = u'2011. A <a href="http://kennethreitz.com/pages/open-projects.html">Kenneth Reitz</a> Project' +copyright = u'2016. A <a href="http://kennethreitz.org/">Kenneth Reitz</a> Project' # The version info for the project you're documenting, acts as replacement for # |version| and |release|, also used in various other places throughout the diff --git a/tablib/core.py b/tablib/core.py index f94dda2..0846df9 100644 --- a/tablib/core.py +++ b/tablib/core.py @@ -18,8 +18,8 @@ from tablib.compat import OrderedDict, unicode __title__ = 'tablib' -__version__ = '0.11.1' -__build__ = 0x001101 +__version__ = '0.11.2' +__build__ = 0x001102 __author__ = 'Kenneth Reitz' __license__ = 'MIT' __copyright__ = 'Copyright 2016 Kenneth Reitz' |
