summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Heimes <christian@python.org>2019-04-17 23:05:20 +0200
committerChristian Heimes <christian@python.org>2019-04-17 23:10:02 +0200
commit0250d10930e4d5acf24ccc7144184989e65c2f3c (patch)
tree627aa8aa30988806e47374b8dc10e5f6d44cf2b0
parent4888e1fe2fb25984907f918de442eb5c2f983fa1 (diff)
downloaddefusedxml-git-0250d10930e4d5acf24ccc7144184989e65c2f3c.tar.gz
Prepare release 0.6.0v0.6.0
Signed-off-by: Christian Heimes <christian@python.org>
-rw-r--r--CHANGES.txt11
-rw-r--r--README.md7
-rw-r--r--defusedxml/__init__.py2
3 files changed, 18 insertions, 2 deletions
diff --git a/CHANGES.txt b/CHANGES.txt
index f6cb7bf..ae9639e 100644
--- a/CHANGES.txt
+++ b/CHANGES.txt
@@ -1,6 +1,15 @@
Changelog
=========
+defusedxml 0.6.0
+----------------
+
+*Release date: 17-Apr-2019*
+
+- Increase test coverage.
+- Add badges to README.
+
+
defusedxml 0.6.0rc1
-------------------
@@ -20,7 +29,6 @@ defusedxml 0.6.0rc1
Both the old and fixed name are now available.
-
defusedxml 0.5.0
----------------
@@ -28,6 +36,7 @@ defusedxml 0.5.0
- No changes
+
defusedxml 0.5.0.rc1
--------------------
diff --git a/README.md b/README.md
index 5e9d0c3..056ff6d 100644
--- a/README.md
+++ b/README.md
@@ -712,6 +712,13 @@ 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.6.0
+
+*Release date: 17-Apr-2019*
+
+ - Increase test coverage.
+ - Add badges to README.
+
## defusedxml 0.6.0rc1
*Release date: 14-Apr-2019*
diff --git a/defusedxml/__init__.py b/defusedxml/__init__.py
index f711bb4..6f3b758 100644
--- a/defusedxml/__init__.py
+++ b/defusedxml/__init__.py
@@ -51,7 +51,7 @@ def defuse_stdlib():
return defused
-__version__ = "0.6.0rc1"
+__version__ = "0.6.0"
__all__ = [
"DefusedXmlException",