summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Lord <davidism@gmail.com>2021-05-11 12:25:53 -0700
committerDavid Lord <davidism@gmail.com>2021-05-11 12:25:53 -0700
commit15218851a80a0215ec729b37f503205c60e0d17c (patch)
tree3d51dcb0b06aa4ff5d5a17c097593a0cf1cc1be6
parent05154a5b7c1671f3a761a51ae9537f8ca2a9db57 (diff)
downloadmarkupsafe-15218851a80a0215ec729b37f503205c60e0d17c.tar.gz
release version 2.0.0
-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"(<!--.*?-->|<[^>]*>)")