Skip to content

Commit

Permalink
Merge pull request #91 from stchris/prepare-1.2.0
Browse files Browse the repository at this point in the history
Prepare 1.2.0 release
  • Loading branch information
stchris committed Jul 1, 2022
2 parents f0370dc + 3b303a7 commit 42e4b3a
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 8 deletions.
14 changes: 8 additions & 6 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,18 +2,20 @@ Changelog
---------

Unreleased
- flake8 now runs as part of the unit tests. Fully replaced nose with tox as a test runner.

1.2.0
- (SECURITY) Prevent XML SAX vulnerability: External Entities injection ([#60](https://github.com/stchris/untangle/issues/60))
- support for python keywords as element names ([#43](https://github.com/stchris/untangle/pull/43))
- support Element truthiness on Python 3 ([#68](https://github.com/stchris/untangle/pull/68/))
- dropped support for Python 3.4-3.6 and pypy, untangle currently support Python 3.7-3.10
- fixed setup.py warning ([#77](https://github.com/stchris/untangle/pull/77/))

- dropped support for Python 2.6, 3.3
- fixed support for Python 3.6 ([#57](https://github.com/stchris/untangle/pull/57))
- formatted code with black
- support Element truthiness on Python 3 ([#68](https://github.com/stchris/untangle/pull/68/))
- flake8 linter enforced in CI
- `main` is now the default branch
- switch to Github Actions
- switch to poetry and pytest
- dropped support for Python 3.4-3.6 and pypy
- Prevent XML SAX vulnerability: External Entities injection ([#60](https://github.com/stchris/untangle/issues/60))
- fixed setup.py warning ([#77](https://github.com/stchris/untangle/pull/77/))

1.1.1
- added generic SAX feature toggle ([#26](https://github.com/stchris/untangle/pull/26))
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.1.1"
version = "1.2.0"
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.1.1"
__version__ = "1.2.0"


class Element(object):
Expand Down

0 comments on commit 42e4b3a

Please sign in to comment.