diff --git a/docs/changes.rst b/docs/changes.rst index d9a29a7..d868f08 100644 --- a/docs/changes.rst +++ b/docs/changes.rst @@ -3,6 +3,14 @@ Changelog Here is the full history of mistune v3. +Version 3.0.0 +------------- + +**Released on June 08, 2023** + +* Do not strip leading unicode spaces like emsp +* Ensure new line at end of the text + Version 3.0.0rc5 ---------------- diff --git a/src/mistune/__init__.py b/src/mistune/__init__.py index d90e6e5..d225478 100644 --- a/src/mistune/__init__.py +++ b/src/mistune/__init__.py @@ -71,5 +71,5 @@ def markdown(text, escape=True, renderer='html', plugins=None) -> str: 'html', 'create_markdown', 'markdown', ] -__version__ = '3.0.0rc5' +__version__ = '3.0.0' __homepage__ = 'https://mistune.lepture.com/'