summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Lord <davidism@gmail.com>2021-05-18 10:19:06 -0700
committerDavid Lord <davidism@gmail.com>2021-05-18 10:19:06 -0700
commit5faff6a29460d73c022c825c2ee31899733f6b4c (patch)
tree1161db6502caf2fc005ce49037bfa635836a48d2
parent7666dffd690186973f03b6feccb4773e5b505c29 (diff)
downloadmarkupsafe-5faff6a29460d73c022c825c2ee31899733f6b4c.tar.gz
start version 2.0.2.dev0
-rw-r--r--CHANGES.rst6
-rw-r--r--src/markupsafe/__init__.py2
2 files changed, 7 insertions, 1 deletions
diff --git a/CHANGES.rst b/CHANGES.rst
index e50fc98..1671c50 100644
--- a/CHANGES.rst
+++ b/CHANGES.rst
@@ -1,3 +1,9 @@
+Version 2.0.2
+-------------
+
+Unreleased
+
+
Version 2.0.1
-------------
diff --git a/src/markupsafe/__init__.py b/src/markupsafe/__init__.py
index d331ac3..98e2d1b 100644
--- a/src/markupsafe/__init__.py
+++ b/src/markupsafe/__init__.py
@@ -11,7 +11,7 @@ if t.TYPE_CHECKING:
pass
-__version__ = "2.0.1"
+__version__ = "2.0.2.dev0"
_striptags_re = re.compile(r"(<!--.*?-->|<[^>]*>)")