diff --git a/README.md b/README.md index 21e82d6..e0e8a22 100644 --- a/README.md +++ b/README.md @@ -29,10 +29,10 @@ Using old Mistune? Checkout docs: ## Install -To install v2 of mistune: +To install mistune: ``` -$ pip install mistune==2.0.0rc1 +$ pip install mistune ``` ## Overview diff --git a/docs/changes.rst b/docs/changes.rst index 2e13194..3ba4455 100644 --- a/docs/changes.rst +++ b/docs/changes.rst @@ -3,6 +3,13 @@ Changelog Here is the full history of mistune v2. +Version 2.0.1 +~~~~~~~~~~~~~ + +Released on Dec 30, 2021 + +XSS fix for image link syntax. + Version 2.0.0 ~~~~~~~~~~~~~ diff --git a/mistune/__init__.py b/mistune/__init__.py index 4f1a56b..ea1d11f 100644 --- a/mistune/__init__.py +++ b/mistune/__init__.py @@ -60,4 +60,4 @@ def markdown(text, escape=True, renderer=None, plugins=None): 'html', 'create_markdown', 'markdown', ] -__version__ = '2.0.0rc2' +__version__ = '2.0.1' diff --git a/setup.cfg b/setup.cfg index b9ed6da..f9bb824 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,6 +1,6 @@ [metadata] name = mistune -version = 2.0.0 +version = 2.0.1 author = Hsiaoming Yang author_email = me@lepture.com license = BSD 3-Clause License