minidom: Release 0.15.2
This finally fixes the memory corruption on closing tag for elements with a name longer than 24 bytes.
This commit is contained in:
parent
58f6d5494a
commit
0d0335898d
2 changed files with 8 additions and 2 deletions
|
@ -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:
|
Version 0.15.1, released 2023-01-15:
|
||||||
* Changes
|
* Changes
|
||||||
* Add `Element::from_reader_with_prefixes`
|
* Add `Element::from_reader_with_prefixes`
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "minidom"
|
name = "minidom"
|
||||||
version = "0.15.1"
|
version = "0.15.2"
|
||||||
authors = [
|
authors = [
|
||||||
"lumi <lumi@pew.im>",
|
"lumi <lumi@pew.im>",
|
||||||
"Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>",
|
"Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>",
|
||||||
|
@ -21,4 +21,4 @@ edition = "2018"
|
||||||
gitlab = { repository = "xmpp-rs/xmpp-rs" }
|
gitlab = { repository = "xmpp-rs/xmpp-rs" }
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
rxml = "0.9.1"
|
rxml = { version = "0.9.1", default-features = false, features = ["mt"] }
|
||||||
|
|
Loading…
Reference in a new issue