diff --git a/jid/Cargo.toml b/jid/Cargo.toml index 069af4c36dbc95be3f4eb41e1d24ac165c2aa3f9..db64b0e05fa9a60c69ca66d8ffcae0ee588b43fa 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.17", path = "../minidom", optional = true } +minidom = { version = "0.18", path = "../minidom", optional = true } [dev-dependencies] serde_test = "1" diff --git a/minidom/CHANGELOG.md b/minidom/CHANGELOG.md index 3ab9c3c0a2d14d1b259df9a469d5c6c2b46d451f..61af4ebc9253e1a8fe2267ae9fc324c0bd348c6f 100644 --- a/minidom/CHANGELOG.md +++ b/minidom/CHANGELOG.md @@ -1,6 +1,8 @@ Version NEXT: + +Version 0.18, released 2025-10-28: * Breaking: - * Removed 'std' feature for now because it makes build fail on + * Remove 'std' feature for now because it makes build fail on no-default-features. * Add `Element::attr_ns` that requires the attribute namespace in addition to `Element::attr` (which defaults to `rxml::Namespace::none()`. Similar diff --git a/minidom/Cargo.toml b/minidom/Cargo.toml index 612d0649bf59320643fac0554c322ada252aabb5..b1ad96b491fe5bee64aa9cbe4a2786c5858952b0 100644 --- a/minidom/Cargo.toml +++ b/minidom/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "minidom" -version = "0.17.0" +version = "0.18.0" authors = [ "lumi ", "Emmanuel Gil Peyrot ", diff --git a/parsers/Cargo.toml b/parsers/Cargo.toml index fec507dcd9af89ec8119d15768e92d12bd144164..13799713df1f851ab95d79847cf9b8a97a6d409d 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.17", path = "../minidom" } +minidom = { version = "0.18", path = "../minidom" } xso = { version = "0.2", 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 bd167dcd89c5f883758fd4e9331183cec9c2c291..d7968c022abd1edd36e4f3706968aef24d1ac6fd 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.17", path = "../minidom" } +minidom = { version = "0.18", path = "../minidom" } xso_proc = { version = "0.2", path = "../xso-proc", optional = true } # optional dependencies to provide text conversion to/from types from/using