Skip to content

Commit 465b54d

Browse files
authored
🚀 RELEASE: v2.0.0 (#182)
1 parent 4827cbf commit 465b54d

File tree

2 files changed

+11
-1
lines changed

2 files changed

+11
-1
lines changed

CHANGELOG.md

+9
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
# Change Log
22

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+
312
## 1.1.0 - 2021-05-08
413

514
⬆️ UPGRADE: `attrs` -> v21 (#165)

markdown_it/__init__.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1+
"""A Python port of Markdown-It"""
12
__all__ = ("MarkdownIt",)
2-
__version__ = "1.1.0"
3+
__version__ = "2.0.0"
34

45
from .main import MarkdownIt

0 commit comments

Comments
 (0)