From 3d84ff87badc795d44451c79d7e78b8eef6c04bf Mon Sep 17 00:00:00 2001 From: Chris Sewell Date: Sun, 28 Apr 2024 22:19:50 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=9A=80=20Release=20v3.0.1=20(#926)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- CHANGELOG.md | 9 +++++++++ myst_parser/__init__.py | 2 +- 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 2eb1b337..9bfb28b0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,14 @@ # Changelog +## 3.0.1 - 2024-04-28 + +### 🐛 Bug Fixes + +- Account for the final directive option having an empty value, by in +- Re-allow indented directive option blocks, by in + +**Full Changelog**: [v3.0.1...v3.0.0](https://github.com/executablebooks/MyST-Parser/compare/v3.0.1...v3.0.0) + ## 3.0.0 - 2024-04-23 ### Upgraded dependencies diff --git a/myst_parser/__init__.py b/myst_parser/__init__.py index aaaf31f4..020188e2 100644 --- a/myst_parser/__init__.py +++ b/myst_parser/__init__.py @@ -3,7 +3,7 @@ and [Sphinx](https://github.com/sphinx-doc/sphinx). """ -__version__ = "3.0.0" +__version__ = "3.0.1" def setup(app):