diff --git a/jid/Cargo.toml b/jid/Cargo.toml index 5702d860ddaec45af17997095676cfd225457327..069af4c36dbc95be3f4eb41e1d24ac165c2aa3f9 100644 --- a/jid/Cargo.toml +++ b/jid/Cargo.toml @@ -26,7 +26,7 @@ quote = { version = "1.0", optional = true } proc-macro2 = { version = "1.0", optional = true } idna = "1" # same repository dependencies -minidom = { version = "0.16", path = "../minidom", optional = true } +minidom = { version = "0.17", path = "../minidom", optional = true } [dev-dependencies] serde_test = "1" diff --git a/minidom/CHANGELOG.md b/minidom/CHANGELOG.md index 3739b92fbadf13e2e25cd5fa1b34cbcc2bad9119..f22a99595a0f45f7f1c25aeae497890eabfc0fd6 100644 --- a/minidom/CHANGELOG.md +++ b/minidom/CHANGELOG.md @@ -1,4 +1,6 @@ Version NEXT: + +Version 0.17, released 2025-09-17: * Changes * Almost make the whole crate `no_std`, only `std::io` is still remaining. * Update rxml dependency to 0.13. diff --git a/minidom/Cargo.toml b/minidom/Cargo.toml index a205604016263cd59ab6c55f9f7c3ae852f5382a..0779ef1f7bb36553be38983ed328645eef98d8cb 100644 --- a/minidom/Cargo.toml +++ b/minidom/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "minidom" -version = "0.16.0" +version = "0.17.0" authors = [ "lumi ", "Emmanuel Gil Peyrot ", diff --git a/parsers/Cargo.toml b/parsers/Cargo.toml index 21b6007a6166fcfbc5b33ea2a57ed7996044cb95..ea2827ad1c20f39600c443267938c19fd42c7410 100644 --- a/parsers/Cargo.toml +++ b/parsers/Cargo.toml @@ -24,7 +24,7 @@ chrono = { version = "0.4.5", default-features = false, features = ["std"] } log = { version = "0.4", optional = true } # same repository dependencies jid = { version = "0.12", path = "../jid", features = ["minidom"] } -minidom = { version = "0.16", path = "../minidom" } +minidom = { version = "0.17", path = "../minidom" } xso = { version = "0.1", path = "../xso", features = ["macros", "minidom", "panicking-into-impl", "jid", "uuid", "base64", "serde_json"] } uuid = { version = "1.9.1", features = ["v4"] } serde_json = { version = "1.0", default-features = false, features = ["alloc"] } diff --git a/xso/Cargo.toml b/xso/Cargo.toml index c678e72b744f04635eace918ad70ce7227aa8920..1f2faf679648d4a6f6ca3688dab0753741ec7f57 100644 --- a/xso/Cargo.toml +++ b/xso/Cargo.toml @@ -12,7 +12,7 @@ license = "MPL-2.0" [dependencies] bytes = { version = "1" } rxml = { version = "0.13.1", default-features = false } -minidom = { version = "0.16", path = "../minidom" } +minidom = { version = "0.17", path = "../minidom" } xso_proc = { version = "0.1", path = "../xso-proc", optional = true } # optional dependencies to provide text conversion to/from types from/using