From 89fa620eb349a774d4cb682b6d5fd61220df0295 Mon Sep 17 00:00:00 2001 From: Mingun Date: Wed, 28 Dec 2022 20:50:52 +0500 Subject: [PATCH] Release 0.27.1 - fix for #530 --- Cargo.toml | 2 +- Changelog.md | 8 ++++++-- 2 files changed, 7 insertions(+), 3 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 859032a4..6d517fe9 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "quick-xml" -version = "0.27.0" +version = "0.27.1" description = "High performance xml reader and writer" edition = "2018" diff --git a/Changelog.md b/Changelog.md index a906c05a..364ff29a 100644 --- a/Changelog.md +++ b/Changelog.md @@ -14,13 +14,17 @@ ### Bug Fixes +### Misc Changes + +## 0.27.1 -- 2022-12-28 + +### Bug Fixes + - [#530]: Fix an infinite loop leading to unbounded memory consumption that occurs when skipping events on malformed XML with the `overlapped-lists` feature active. - [#530]: Fix an error in the `Deserializer::read_to_end` when `overlapped-lists` feature is active and malformed XML is parsed -### Misc Changes - [#530]: https://github.com/tafia/quick-xml/pull/530 ## 0.27.0 -- 2022-12-25