From d44457eb3f12c3aff71eada458f19261b6d71657 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Maxime=20=E2=80=9Cpep=E2=80=9D=20Buquet?= Date: Thu, 17 Aug 2023 12:50:10 +0200 Subject: [PATCH] parsers: Update changelog MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Maxime “pep” Buquet --- parsers/ChangeLog | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/parsers/ChangeLog b/parsers/ChangeLog index 3e385c85..5b41ff4e 100644 --- a/parsers/ChangeLog +++ b/parsers/ChangeLog @@ -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