From 48b47c95cfd82b77c9073d1026879da0208808cc Mon Sep 17 00:00:00 2001 From: Martin Blech <78768+martinblech@users.noreply.github.com> Date: Tue, 8 Oct 2024 11:34:34 -0700 Subject: [PATCH] Bump version and update CHANGELOG. --- CHANGELOG.md | 24 ++++++++++++++++++++++++ xmltodict.py | 2 +- 2 files changed, 25 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f9aa2a5..a48658e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,30 @@ CHANGELOG ========= +v0.14.0 +------- + +* Drop old Python 2 support leftover code and apply several RUFF code health fixes. + * Thanks, @DimitriPapadopoulos! +* Add Python 3.11, 3.12 and 3.13 support and tests. + * Thanks, @angvp! +* Tests in gh-action. + * Thanks, @almaz.kun! +* Remove defusedexpat import. + * Thanks, @hanno! +* Replace deprecated BadZipfile with BadZipFile. + * Thanks, @hugovk! +* Support indent using interger format, enable `python -m unittest tests/*.py`. + * Thanks, @hiiwave! +* Ensure significant whitespace is not trimmed + * Thanks, @trey.franklin! +* added conda installation command + * Thanks, @sugatoray! +* fix attributes not appearing in streaming mode + * Thanks, @timnguyen001! +* Fix Travis CI status badge URL +* Update push_release.sh to use twine. + v0.13.0 ------- diff --git a/xmltodict.py b/xmltodict.py index aad55e2..21242cf 100755 --- a/xmltodict.py +++ b/xmltodict.py @@ -14,7 +14,7 @@ from inspect import isgenerator __author__ = 'Martin Blech' -__version__ = '0.13.0' +__version__ = '0.14.0' __license__ = 'MIT'