From 7b7d74f1312486562769ca5f5ebe2f8eab1afc60 Mon Sep 17 00:00:00 2001 From: Chris Sewell Date: Tue, 25 Aug 2020 10:04:49 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=9A=80=20RELEASE:=20v0.12.2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- CHANGELOG.md | 13 +++++++++++++ myst_parser/__init__.py | 2 +- 2 files changed, 14 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 27e5adfb..ed5773d1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,18 @@ # Change log +## 0.12.2 - 2020-25-08 + +✨ NEW: Add the `eval-rst` directive + +This directive parses its contents as ReStructuredText, which integrates back into the rest of the document, e.g. for cross-referencing. See [this documentation](https://myst-parser.readthedocs.io/en/latest/using/syntax.html#how-directives-parse-content) for further explanation. + +In particular, this addition solves some outstanding user requests: + +- How-to [include rST files into a Markdown file](https://myst-parser.readthedocs.io/en/latest/using/howto.html#include-rst-files-into-a-markdown-file) +- How-to [Use sphinx.ext.autodoc in Markdown files](https://myst-parser.readthedocs.io/en/latest/using/howto.html#use-sphinx-ext-autodoc-in-markdown-files) + +Thanks to [@stephenroller](https://github.com/stephenroller) for the contribution 🎉 + ## 0.12.1 - 2020-19-08 ✨ NEW: Add `myst_commonmark_only` config option, for restricting the parser to strict CommonMark (no extensions). diff --git a/myst_parser/__init__.py b/myst_parser/__init__.py index 010f1ddf..7188bb75 100644 --- a/myst_parser/__init__.py +++ b/myst_parser/__init__.py @@ -1,4 +1,4 @@ -__version__ = "0.12.1" +__version__ = "0.12.2" def setup(app):