summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Lord <davidism@gmail.com>2023-01-17 10:25:42 -0800
committerGitHub <noreply@github.com>2023-01-17 10:25:42 -0800
commit08eb1d421fb77d52597d380e7165c7d501113086 (patch)
tree8ba305079fe7c141fa8d2eac7f3f0fc66120df8f
parentb662e670056cfdeb170ffe8fc2fa5df162912c32 (diff)
parentc0254f0cfe51720ecc9e72e8896022af29af5b44 (diff)
downloadmarkupsafe-08eb1d421fb77d52597d380e7165c7d501113086.tar.gz
release version 2.1.2 (#347)
-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)