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):