diff --git a/minidom/CHANGELOG.md b/minidom/CHANGELOG.md index 1d84bd612d9a51ae0c16f255fe14fd34deea9027..2a1803b065cf045ebfa4e6063a8900de30b9262a 100644 --- a/minidom/CHANGELOG.md +++ b/minidom/CHANGELOG.md @@ -1,3 +1,9 @@ +Version 0.15.2, released 2023-05-13: + * Changes + * Fix a memory corruption on closing tags for elements with a name longer + than 24 bytes + * Only enable the mt features of rxml, we don’t need any additional one + Version 0.15.1, released 2023-01-15: * Changes * Add `Element::from_reader_with_prefixes` diff --git a/minidom/Cargo.toml b/minidom/Cargo.toml index 5b74baa3fdc384f2520d454388d82506d054d7f6..b31f09947b738a9571bf0d4958b16ce6783ff10b 100644 --- a/minidom/Cargo.toml +++ b/minidom/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "minidom" -version = "0.15.1" +version = "0.15.2" authors = [ "lumi ", "Emmanuel Gil Peyrot ", @@ -21,4 +21,4 @@ edition = "2018" gitlab = { repository = "xmpp-rs/xmpp-rs" } [dependencies] -rxml = "0.9.1" +rxml = { version = "0.9.1", default-features = false, features = ["mt"] }