From 28725fceb8e1e117cb247b06a267f82c501ce527 Mon Sep 17 00:00:00 2001 From: Chris Sewell Date: Tue, 27 Sep 2022 11:29:09 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=9A=80=20RELEASE:=200.18.1=20(#621)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- CHANGELOG.md | 10 ++++++++++ myst_parser/__init__.py | 2 +- 2 files changed, 11 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 41d6743e..0fe72f45 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,15 @@ # Changelog +## 0.18.1 - 2022-27-09 + +Full Changelog: [v0.18.0...v0.18.1](https://github.com/executablebooks/MyST-Parser/compare/v0.18.0...v0.18.1) + +- ⬆️ UPGRADE: docutils 0.19 support (#611) +- ✨ NEW: Add `attrs_image` (experimental) extension (#620) + - e.g. `![image](image.png){#id .class width=100px}` + - See: [Optional syntax section](docs/syntax/optional.md) + - **Important**: This is an experimental extension, and may change in future releases + ## 0.18.0 - 2022-06-07 Full Changelog: [v0.17.2...v0.18.0](https://github.com/executablebooks/MyST-Parser/compare/v0.17.2...v0.18.0) diff --git a/myst_parser/__init__.py b/myst_parser/__init__.py index f3512379..56dd460a 100644 --- a/myst_parser/__init__.py +++ b/myst_parser/__init__.py @@ -1,5 +1,5 @@ """An extended commonmark compliant parser, with bridges to docutils & sphinx.""" -__version__ = "0.18.0" +__version__ = "0.18.1" def setup(app):