Skip to content

Commit

Permalink
Merge pull request #95 from stchris/release-1.2.1
Browse files Browse the repository at this point in the history
Prepare 1.2.1 release
  • Loading branch information
stchris committed Jul 2, 2022
2 parents 6f2c105 + 06bd035 commit e988ee2
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
4 changes: 3 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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))
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -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 <[email protected]>"]
license = "MIT"
Expand Down
2 changes: 1 addition & 1 deletion untangle.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ def is_string(x):
return isinstance(x, str)


__version__ = "1.2.0"
__version__ = "1.2.1"


class Element(object):
Expand Down

0 comments on commit e988ee2

Please sign in to comment.