summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--CHANGES.rst2
-rw-r--r--src/markupsafe/__init__.py2
2 files changed, 2 insertions, 2 deletions
diff --git a/CHANGES.rst b/CHANGES.rst
index 9310cdc..8637c14 100644
--- a/CHANGES.rst
+++ b/CHANGES.rst
@@ -1,7 +1,7 @@
Version 2.0.0
-------------
-Unreleased
+Released 2021-05-11
- Drop Python 2.7, 3.4, and 3.5 support.
- ``Markup.unescape`` uses :func:`html.unescape` to support HTML5
diff --git a/src/markupsafe/__init__.py b/src/markupsafe/__init__.py
index 0f1c71a..67421c9 100644
--- a/src/markupsafe/__init__.py
+++ b/src/markupsafe/__init__.py
@@ -10,7 +10,7 @@ if t.TYPE_CHECKING:
pass
-__version__ = "2.0.0rc2"
+__version__ = "2.0.0"
_striptags_re = re.compile(r"(<!--.*?-->|<[^>]*>)")