diff --git a/xmpp/ChangeLog b/xmpp/ChangeLog index 322f7808..c4e35a69 100644 --- a/xmpp/ChangeLog +++ b/xmpp/ChangeLog @@ -26,6 +26,8 @@ XXXX-YY-ZZ [ RELEASER ] - Agent::wait_for_events now return Vec and sets inner tokio_xmpp Client auto-reconnect to true... It is still aware of Event::Disconnected but should no longer have weird hanging state or panic (!436) + - The default caps node has been shortened to https://xmpp.rs since we + own that domain. Users should change it in their application though. * CI: - Enforce changelog updates in Gitlab CI. diff --git a/xmpp/examples/hello_bot.rs b/xmpp/examples/hello_bot.rs index 9b38e48b..ba0bf664 100644 --- a/xmpp/examples/hello_bot.rs +++ b/xmpp/examples/hello_bot.rs @@ -47,7 +47,7 @@ async fn main() -> Result<(), Option<()>> { // Client instance let mut client = ClientBuilder::new(jid, password) .set_client(ClientType::Bot, "xmpp-rs") - .set_website("https://gitlab.com/xmpp-rs/xmpp-rs") + .set_website("https://xmpp.rs") .set_default_nick(nick) .enable_feature(ClientFeature::ContactList) .enable_feature(ClientFeature::JoinRooms) diff --git a/xmpp/src/lib.rs b/xmpp/src/lib.rs index 358c83e1..aeb19a73 100644 --- a/xmpp/src/lib.rs +++ b/xmpp/src/lib.rs @@ -131,7 +131,7 @@ mod tests { // Client instance let client_builder = ClientBuilder::new(jid, "meh") .set_client(ClientType::Bot, "xmpp-rs") - .set_website("https://gitlab.com/xmpp-rs/xmpp-rs") + .set_website("https://xmpp.rs") .set_default_nick(nick) .enable_feature(ClientFeature::ContactList);