Release all crates

Since we tie the versions rather tightly, we have to release the entire
bunch in order to allow people to upgrade to rxml 0.14.
This commit is contained in:
Jonas Schäfer 2026-06-10 17:48:26 +02:00
commit 1710a6f99e
11 changed files with 32 additions and 20 deletions

View file

@ -1,6 +1,6 @@
[package]
name = "xmpp-parsers"
version = "0.22.0"
version = "0.23.0"
authors = [
"Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>",
"Maxime “pep” Buquet <pep@bouah.net>",
@ -25,7 +25,7 @@ log = { version = "0.4", optional = true }
# same repository dependencies
jid = { version = "0.12", path = "../jid", features = ["minidom"] }
minidom = { version = "0.19", path = "../minidom" }
xso = { version = "0.3", path = "../xso", features = ["macros", "minidom", "panicking-into-impl", "jid", "uuid", "base64", "serde_json"] }
xso = { version = "0.4", 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"] }

View file

@ -1,5 +1,8 @@
Version NEXT:
XXXX-YY-ZZ RELEASER <admin@example.com>
XXXX-YY-ZZ RELEASER <releaser@domain.example>
Version 0.23.0:
2026-06-11 Jonas Schäfer <jonas@zombofant.net>
* New parsers/serialisers:
- MUC Affiliations Versioning (XEP-0463) (!668)
- Client Access Management (XEP-0494) (!641)
@ -34,7 +37,7 @@ XXXX-YY-ZZ RELEASER <admin@example.com>
- jingle_rtp::Description gained a bandwidth child.
- Fix cargo test for the disable-validation and component features.
- Structs of the bind module now have accessible inner pieces (!675).
- Add 'approved' field to roster item (!683).
- Add 'approved' field to roster item (!683).
Version 0.22.0:
2025-10-28 pep <pep@bouah.net>