We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4827cbf commit 465b54dCopy full SHA for 465b54d
CHANGELOG.md
@@ -1,5 +1,14 @@
1
# Change Log
2
3
+## 2.0.0 - 2021-12-03
4
+
5
+- ⬆️ Update: Sync with markdown-it v12.1.0 and CommonMark v0.30
6
+- ♻️ REFACTOR: Port `mdurl` and `punycode` for URL normalisation (thanks to @hukkin!).
7
+ This port fixes the outstanding CommonMark compliance tests.
8
+- ♻️ REFACTOR: Remove `AttrDict`.
9
+ This is no longer used is core or mdit-py-plugins, instead standard dictionaries are used.
10
+- 👌 IMPROVE: Use `__all__` to signal re-exports
11
12
## 1.1.0 - 2021-05-08
13
14
⬆️ UPGRADE: `attrs` -> v21 (#165)
markdown_it/__init__.py
@@ -1,4 +1,5 @@
+"""A Python port of Markdown-It"""
__all__ = ("MarkdownIt",)
-__version__ = "1.1.0"
+__version__ = "2.0.0"
from .main import MarkdownIt
0 commit comments