Skip to content

Commit ff9c3dc

Browse files
committed
Bump minidom version to 0.17.0
1 parent 5b265eb commit ff9c3dc

File tree

5 files changed

+6
-4
lines changed

5 files changed

+6
-4
lines changed

jid/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ quote = { version = "1.0", optional = true }
2626
proc-macro2 = { version = "1.0", optional = true }
2727
idna = "1"
2828
# same repository dependencies
29-
minidom = { version = "0.16", path = "../minidom", optional = true }
29+
minidom = { version = "0.17", path = "../minidom", optional = true }
3030

3131
[dev-dependencies]
3232
serde_test = "1"

minidom/CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
11
Version NEXT:
2+
3+
Version 0.17, released 2025-09-17:
24
* Changes
35
* Almost make the whole crate `no_std`, only `std::io` is still remaining.
46
* Update rxml dependency to 0.13.

minidom/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "minidom"
3-
version = "0.16.0"
3+
version = "0.17.0"
44
authors = [
55
66
"Emmanuel Gil Peyrot <[email protected]>",

parsers/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ chrono = { version = "0.4.5", default-features = false, features = ["std"] }
2424
log = { version = "0.4", optional = true }
2525
# same repository dependencies
2626
jid = { version = "0.12", path = "../jid", features = ["minidom"] }
27-
minidom = { version = "0.16", path = "../minidom" }
27+
minidom = { version = "0.17", path = "../minidom" }
2828
xso = { version = "0.1", path = "../xso", features = ["macros", "minidom", "panicking-into-impl", "jid", "uuid", "base64", "serde_json"] }
2929
uuid = { version = "1.9.1", features = ["v4"] }
3030
serde_json = { version = "1.0", default-features = false, features = ["alloc"] }

xso/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ license = "MPL-2.0"
1212
[dependencies]
1313
bytes = { version = "1" }
1414
rxml = { version = "0.13.1", default-features = false }
15-
minidom = { version = "0.16", path = "../minidom" }
15+
minidom = { version = "0.17", path = "../minidom" }
1616
xso_proc = { version = "0.1", path = "../xso-proc", optional = true }
1717

1818
# optional dependencies to provide text conversion to/from types from/using

0 commit comments

Comments
 (0)