Skip to content

Commit

Permalink
🚀 RELEASE: v2.0.0 (#182)
Browse files Browse the repository at this point in the history
  • Loading branch information
chrisjsewell authored Dec 3, 2021
1 parent 4827cbf commit 465b54d
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 1 deletion.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# Change Log

## 2.0.0 - 2021-12-03

- ⬆️ Update: Sync with markdown-it v12.1.0 and CommonMark v0.30
- ♻️ REFACTOR: Port `mdurl` and `punycode` for URL normalisation (thanks to @hukkin!).
This port fixes the outstanding CommonMark compliance tests.
- ♻️ REFACTOR: Remove `AttrDict`.
This is no longer used is core or mdit-py-plugins, instead standard dictionaries are used.
- 👌 IMPROVE: Use `__all__` to signal re-exports

## 1.1.0 - 2021-05-08

⬆️ UPGRADE: `attrs` -> v21 (#165)
Expand Down
3 changes: 2 additions & 1 deletion markdown_it/__init__.py
Original file line number Diff line number Diff line change
@@ -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 comments on commit 465b54d

Please sign in to comment.