minidom: Bump version to 0.18
Signed-off-by: pep <pep@bouah.net>
This commit is contained in:
parent
0c253b8c4e
commit
bd986f5e5e
5 changed files with 7 additions and 5 deletions
|
|
@ -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"
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "minidom"
|
||||
version = "0.17.0"
|
||||
version = "0.18.0"
|
||||
authors = [
|
||||
"lumi <lumi@pew.im>",
|
||||
"Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>",
|
||||
|
|
|
|||
|
|
@ -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"] }
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in a new issue