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}