From 465b54d79641a3acd1d4e2ff483f1ccf4a4556ff Mon Sep 17 00:00:00 2001 From: Chris Sewell Date: Fri, 3 Dec 2021 09:41:36 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=9A=80=20RELEASE:=20v2.0.0=20(#182)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- CHANGELOG.md | 9 +++++++++ markdown_it/__init__.py | 3 ++- 2 files changed, 11 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f9d776a2..cd1e04da 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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) diff --git a/markdown_it/__init__.py b/markdown_it/__init__.py index 90d992d0..fc1cca90 100644 --- a/markdown_it/__init__.py +++ b/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