From 9f826bdfd96eac4074007d256eea7f091b8cf325 Mon Sep 17 00:00:00 2001 From: Chris Sewell Date: Fri, 1 Jan 2021 15:54:43 +0000 Subject: [PATCH] =?UTF-8?q?=F0=9F=9A=80=20RELEASE:=20v0.6.1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- CHANGELOG.md | 8 ++++++++ markdown_it/__init__.py | 2 +- 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d502fff0..74aa76fb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Change Log +## 0.6.1 - 2021-01-01 + +This release provides some improvements to the code base: + +- 🐛 FIX: Do not resolve backslash escapes inside auto-links +- 🐛 FIX: Add content to image tokens +- 👌 IMPROVE: Add more type annotations, thanks to [@hukkinj1](https://github.com/hukkinj1) + ## 0.6.0 - 2020-12-15 🗑 DEPRECATE: Move plugins to `mdit_py_plugins` diff --git a/markdown_it/__init__.py b/markdown_it/__init__.py index 15e4348a..eeea557b 100644 --- a/markdown_it/__init__.py +++ b/markdown_it/__init__.py @@ -1,4 +1,4 @@ from .main import MarkdownIt # noqa: F401 -__version__ = "0.6.0" +__version__ = "0.6.1"