1
0
mirror of https://gitlab.com/xmpp-rs/xmpp-rs.git synced 2024-06-02 22:39:21 +02:00

parsers: Update changelog

Signed-off-by: Maxime “pep” Buquet <pep@bouah.net>
This commit is contained in:
Maxime “pep” Buquet 2023-08-17 12:50:10 +02:00
parent d0a8ea3178
commit d44457eb3f

View File

@ -3,15 +3,20 @@ xxx
* New parsers/serialisers:
- Message Reactions (XEP-0444)
* Improvements:
- Update dependencies
- muc::user::Item: Added with_ helpers
- Correct cargo doc warnings
- Presence now has constructors for each variant so you don't have to import presence::Type, where Presence::available represents type None (#79)
- Presence now has constructors for each variant so you don't have to
import presence::Type, where Presence::available represents type None (#79)
- Presence::with_payload builds a payload into the presence (#79)
- Message now has constructors for each type ; Message::new still builds a Chat type (#78)
- Message::with_body builder method appends a body in a given language to the message (#78)
- Derive PartialEq on Iq
- impl MessagePayload for MucUser
- Add MucUser::with_statuses and ::with_items
* Breaking changes:
- Removed the 'serde' feature. Add it directly by using 'jid'.
`jid = { version = "*", features = ["serde"] }`.
`jid = { version = "*", features = ["serde"] }`.
Version 0.19.2:
2022-12-17 Maxime “pep” Buquet <pep@bouah.net>