diff --git a/docs/changes.rst b/docs/changes.rst index d868f08..45de663 100644 --- a/docs/changes.rst +++ b/docs/changes.rst @@ -3,10 +3,19 @@ Changelog Here is the full history of mistune v3. +Version 3.0.1 +------------- + +**Released on Jun 10, 2023** + +* Add ``py.typed`` for mypy +* Add ``tests``, ``docs`` for sdist +* Support ``renderer="ast"`` for rendering AST + Version 3.0.0 ------------- -**Released on June 08, 2023** +**Released on Jun 08, 2023** * Do not strip leading unicode spaces like emsp * Ensure new line at end of the text diff --git a/src/mistune/__init__.py b/src/mistune/__init__.py index 49a6c48..5b9237c 100644 --- a/src/mistune/__init__.py +++ b/src/mistune/__init__.py @@ -77,5 +77,5 @@ def markdown(text, escape=True, renderer='html', plugins=None) -> str: 'html', 'create_markdown', 'markdown', ] -__version__ = '3.0.0' +__version__ = '3.0.1' __homepage__ = 'https://mistune.lepture.com/'