diff --git a/xmpp/ChangeLog b/xmpp/ChangeLog index 322f7808ad4499fad131a72e0f089450ea9e9b12..c4e35a6929ca5db80931f5b36eaa24ecf10e0ec2 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 9b38e48b88e7696baec3484cc5d475e853bfd4d1..ba0bf66419e986bb795fb6c45f8f3539315de933 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 358c83e1f569e33c3928d7a4a486cb97b0d1eb03..aeb19a73d17b93e58bbe4237c373d7e4942897f6 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);