diff --git a/docs/changes.rst b/docs/changes.rst index 283afe7..d9a29a7 100644 --- a/docs/changes.rst +++ b/docs/changes.rst @@ -3,6 +3,16 @@ Changelog Here is the full history of mistune v3. +Version 3.0.0rc5 +---------------- + +**Released on Mar 22, 2023** + +* Fix fenced directives +* Fix inline link parser +* Fix block math plugin for multiple lines +* Fix empty list item for markdown renderer + Version 3.0.0rc4 ---------------- diff --git a/src/mistune/__init__.py b/src/mistune/__init__.py index 4de95c5..eaaeab1 100644 --- a/src/mistune/__init__.py +++ b/src/mistune/__init__.py @@ -71,5 +71,5 @@ def markdown(text, escape=True, renderer='html', plugins=None): 'html', 'create_markdown', 'markdown', ] -__version__ = '3.0.0rc4' +__version__ = '3.0.0rc5' __homepage__ = 'https://mistune.lepture.com/'