1
0
mirror of https://gitlab.com/xmpp-rs/xmpp-rs.git synced 2024-06-26 00:48:27 +02:00

xmpp: version 0.5.0

Signed-off-by: Maxime “pep” Buquet <pep@bouah.net>
This commit is contained in:
Maxime “pep” Buquet 2023-08-21 11:00:27 +02:00
parent e2ef506418
commit edf4347a5a
No known key found for this signature in database
GPG Key ID: DEDA74AEECA9D0F2
2 changed files with 10 additions and 6 deletions

View File

@ -1,6 +1,6 @@
[package]
name = "xmpp"
version = "0.4.0"
version = "0.5.0"
authors = [
"Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>",
"Maxime “pep” Buquet <pep@bouah.net>",

View File

@ -1,11 +1,15 @@
Unreleased:
xxxxxxxxxx
Version 0.5.0:
2023-08-23 [ Maxime “pep” Buquet <pep@bouah.net> ]
* Breaking changes:
- ClientBuilder::new takes a parsed BareJid instead of string (#72)
- ClientBuilder::new doesn't return a Result anymore
- ClientBuilder::new takes a parsed BareJid instead of string (#72)
- ClientBuilder::new doesn't return a Result anymore
* Improvements:
- New event: RoomPrivateMessage(Id, BareJid, RoomNick, Body) (#85)
- New Agent::send_room_private_message method.
- Agent is now Send, by replacing Rc with Arc and RefCell with RwLock (#64)
- ClientBuilder now has a set_resource method for manual resource management (#72)
- ClientBuilder now has a set_resource method for manual resource management (#72)
- Update dependencies
- Re-export jid structs, minidom::Element, and parsers module.
Version 0.4.0:
2023-05-18 [ Maxime “pep” Buquet <pep@bouah.net>, Emmanuel Gil Peyrot <linkmauve@linkmauve.fr> ]