diff --git a/CHANGELOG.md b/CHANGELOG.md index 6f2ad17..17f24f7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,7 +2,9 @@ Changelog --------- Unreleased -- (SECURITY) Use [defusedxml](https://github.com/tiran/defusedxml) to prevent XML SAX vulnerabilities ([#93](https://github.com/stchris/untangle/issues/93)) + +1.2.1 +- (SECURITY) Use [defusedxml](https://github.com/tiran/defusedxml) to prevent XML SAX vulnerabilities ([#94](https://github.com/stchris/untangle/pull/94)) 1.2.0 - (SECURITY) Prevent XML SAX vulnerability: External Entities injection ([#60](https://github.com/stchris/untangle/issues/60)) diff --git a/pyproject.toml b/pyproject.toml index d58c6f1..2e844dc 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "untangle" -version = "1.2.0" +version = "1.2.1" description = "Converts XML to Python objects" authors = ["Christian Stefanescu "] license = "MIT" diff --git a/untangle.py b/untangle.py index d15d69f..68525a3 100755 --- a/untangle.py +++ b/untangle.py @@ -35,7 +35,7 @@ def is_string(x): return isinstance(x, str) -__version__ = "1.2.0" +__version__ = "1.2.1" class Element(object):