From 88d18c5ad7e19da7ef5da2ee47ec63f22a9dbd89 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B8rgen=20Cederberg?= <jorgen@cederberg.be> Date: Mon, 5 Mar 2018 22:54:42 +0100 Subject: [PATCH] Bump version to 0.2.16 --- CHANGES.rst | 11 +++++++++++ setup.py | 2 +- 2 files changed, 12 insertions(+), 1 deletion(-) diff --git a/CHANGES.rst b/CHANGES.rst index 030ad04..afa9575 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,3 +1,14 @@ +sphinxcontrib-matlabdomain-0.2.16 (2018-03-05) +============================================== + +* Fixed `Issue 13 <https://github.com/sphinx-contrib/matlabdomain/issues/13>`_. + crashes if filename and classname are different. +* Fixed `Issue 19 <https://github.com/sphinx-contrib/matlabdomain/issues/19>`_. + crashes if classdef docstring is not indented +* Fixed `Issue #41 <https://github.com/sphinx-contrib/matlabdomain/issues/41>`_. + Problem with non ascii characters. + + sphinxcontrib-matlabdomain-0.2.15 (2018-02-25) ============================================== diff --git a/setup.py b/setup.py index 4040fdd..1bc981b 100644 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ with open('README.rst', 'r') as f_readme: long_desc = f_readme.read() -version = '0.2.15' +version = '0.2.16' requires = ['Sphinx>=1.4.3', 'Pygments>=2.0.1', 'future>=0.16.0']