summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Heimes <christian@python.org>2021-03-04 10:46:50 +0100
committerChristian Heimes <christian@python.org>2021-03-04 10:46:50 +0100
commit06d7ab2c5c19472a8cc7d5184a264873cb8fa972 (patch)
tree8d118ba9ca97fcbdbd0369021fd7dd7487e70d27
parent6653936f117fba5348a271b7d314951275088162 (diff)
downloaddefusedxml-git-06d7ab2c5c19472a8cc7d5184a264873cb8fa972.tar.gz
Open main branch for 0.8.0 dev
Signed-off-by: Christian Heimes <christian@python.org>
-rw-r--r--CHANGES.txt4
-rw-r--r--README.md2
-rw-r--r--defusedxml/__init__.py2
3 files changed, 7 insertions, 1 deletions
diff --git a/CHANGES.txt b/CHANGES.txt
index fd95649..a86065b 100644
--- a/CHANGES.txt
+++ b/CHANGES.txt
@@ -1,6 +1,10 @@
Changelog
=========
+defusedxml 0.7.0.dev1
+---------------------
+
+
defusedxml 0.7.0
----------------
diff --git a/README.md b/README.md
index 1e6fd86..287ab47 100644
--- a/README.md
+++ b/README.md
@@ -716,6 +716,8 @@ See <https://www.python.org/psf/license> for licensing details.
Injection](https://www.owasp.org/index.php/Testing_for_XML_Injection_\(OWASP-DV-008\))
# Changelog
+## defusedxml 0.7.0.dev1
+
## defusedxml 0.7.0
*Release date: 4-Mar-2021*
diff --git a/defusedxml/__init__.py b/defusedxml/__init__.py
index 61ff857..c413b2a 100644
--- a/defusedxml/__init__.py
+++ b/defusedxml/__init__.py
@@ -56,7 +56,7 @@ def defuse_stdlib():
return defused
-__version__ = "0.7.0"
+__version__ = "0.8.0.dev1"
__all__ = [
"DefusedXmlException",