We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fff28a4 commit 8854d84Copy full SHA for 8854d84
CHANGELOG.md
@@ -1,5 +1,11 @@
1
# Changelog
2
3
+## 0.17.2 - 2022-04-17
4
+
5
+Full Changelog: [v0.17.1...v0.17.2](https://github.com/executablebooks/MyST-Parser/compare/v0.17.1...v0.17.2)
6
7
+- ♻️ REFACTOR: Replace `attrs` by `dataclasses` for configuration (#557)
8
9
## 0.17.1 - 2022-04-15
10
11
Full Changelog: [v0.17.0...v0.17.1](https://github.com/executablebooks/MyST-Parser/compare/v0.17.0...v0.17.1)
myst_parser/__init__.py
@@ -1,7 +1,7 @@
"""An extended commonmark compliant parser, with bridges to docutils & sphinx."""
from typing import TYPE_CHECKING
-__version__ = "0.17.1"
+__version__ = "0.17.2"
if TYPE_CHECKING:
0 commit comments