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 = "tokio-xmpp"
version = "5.0.0"
version = "6.0.0"
authors = ["Astro <astro@spaceboyz.net>", "Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>", "pep <pep+code@bouah.net>", "O01eg <o01eg@yandex.ru>", "SonnyX <randy@vonderweide.nl>", "Paul Fariello <paul@fariello.eu>"]
description = "Asynchronous XMPP for Rust with tokio"
license = "MPL-2.0"
@ -26,8 +26,8 @@ pin-project-lite = { version = "0.2" }
thiserror = "2.0"
# same repository dependencies
sasl = { version = "0.5", path = "../sasl" }
xmpp-parsers = { version = "0.22", path = "../parsers", features = [ "log" ] }
xso = { version = "0.3", path = "../xso" }
xmpp-parsers = { version = "0.23", path = "../parsers", features = [ "log" ] }
xso = { version = "0.4", path = "../xso" }
# these are only needed for starttls ServerConnector support
hickory-resolver = { version = "0.26", optional = true}

View file

@ -1,12 +1,15 @@
Version NEXT:
0000-00-00 RELEASER <releaser@domain>
XXXX-XX-XX RELEASER <releaser@domain.example>
Version 6.0.0:
2026-06-10 Jonas Schäfer <jonas@zombofant.net>
* Breaking:
- Removed the `disable-validation` feature and made the behaviour the
new default. The newly-introduced `pedantic` feature can be used to
opt into the previous default behaviour of rejecting all unknown
child elements and attributes.
- Add `xmpp_parsers::stream_features::StreamFeatures` to
`tokio_xmpp::event::Online` (!631)
`tokio_xmpp::event::Online` (!631)
- `Component.jid` is now a `BareJid` and not a raw `Jid` (!684)
- `Client.bound_jid` is now a `FullJid` and not a raw `Jid` (!687)
* Added:
@ -29,10 +32,9 @@ Version NEXT:
- Drive the XMPP client stream in the background (!631)
- Add option to split XMPP client into read and write half (!631)
- Remove T: AsXml bound from XmlStream (!675)
- Invalid stanzas are now handled dropped (after increasing the SM
counters) instead of failing the stream. Previously, that might have
caused continuous reconnect loops esp. with stream management (#172,
!675).
- Invalid stanzas are now dropped (after increasing the SM counters)
instead of failing the stream. Previously, that might have caused
continuous reconnect loops esp. with stream management (#172, !675).
Version 5.0.0:
2025-10-28 pep <pep@bouah.net>