diff --git a/CHANGELOG.md b/CHANGELOG.md index 6a0e34bc..13fa01b6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Change log +## 0.12.5 - 2020-28-08 + +✨ NEW: Add Markdown figure syntax +Setting `myst_figure_enable = True` in your sphinx `conf.py`, combines the above two extended syntaxes, +to create a fully Markdown compliant version of the `figure` directive. +See [Markdown Figures](https://myst-parser.readthedocs.io/en/latest/using/syntax-optional.html#markdown-figures) for details. + ## 0.12.4 - 2020-27-08 👌 IMPROVE: the mathjax extension is now only overridden if strictly necessary (to support dollar and ams math), and the override is more precise, to mitigate any unwanted side-effects diff --git a/myst_parser/__init__.py b/myst_parser/__init__.py index 6be647cb..c308bf58 100644 --- a/myst_parser/__init__.py +++ b/myst_parser/__init__.py @@ -1,4 +1,4 @@ -__version__ = "0.12.4" +__version__ = "0.12.5" def setup(app):