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 e1a558f..81294a0 100644
--- a/CHANGES.rst
+++ b/CHANGES.rst
@@ -1,7 +1,7 @@
Version 2.1.2
-------------
-Unreleased
+Released 2023-01-17
- Fix ``striptags`` not stripping tags containing newlines.
:issue:`310`
diff --git a/src/markupsafe/__init__.py b/src/markupsafe/__init__.py
index 1f9d8cd..7166b19 100644
--- a/src/markupsafe/__init__.py
+++ b/src/markupsafe/__init__.py
@@ -11,7 +11,7 @@ if t.TYPE_CHECKING:
pass
-__version__ = "2.1.2.dev0"
+__version__ = "2.1.2"
_strip_comments_re = re.compile(r"<!--.*?-->", re.DOTALL)
_strip_tags_re = re.compile(r"<.*?>", re.DOTALL)