From 4222ee11c119fc8b308c6f8137f35a394e08065b Mon Sep 17 00:00:00 2001 From: Hsiaoming Yang Date: Thu, 8 Jun 2023 17:47:55 +0900 Subject: [PATCH] chore: release 3.0.0 --- docs/changes.rst | 8 ++++++++ src/mistune/__init__.py | 2 +- 2 files changed, 9 insertions(+), 1 deletion(-) 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/'