diff --git a/parsers/ChangeLog b/parsers/ChangeLog index de15715f2267baccebf20e685d5535c4f6f63809..4b02c7fb24fbccf1a2638a3747bd468aa0294c03 100644 --- a/parsers/ChangeLog +++ b/parsers/ChangeLog @@ -4,6 +4,9 @@ XXXX-YY-ZZ RELEASER - The type of jingle_rtp::Description::ssrc has been changed from Option to Option, in accordance with XEP-0167 version 1.2.3 and RFC 3550. (!602) + * Improvements: + - Make Priority’s inner i8 pub, which had been broken since the + conversion to xso. (!632) Version 0.22.0: 2025-10-28 pep diff --git a/parsers/src/presence.rs b/parsers/src/presence.rs index 2408f1e7a50f7eccd5186d1642084ec8838397f2..b936f0fb68b06f9af0b75292464c6d51bc35b19a 100644 --- a/parsers/src/presence.rs +++ b/parsers/src/presence.rs @@ -64,7 +64,7 @@ type Status = String; /// messages addressed to the bare JID. #[derive(FromXml, AsXml, Debug, Default, Clone, PartialEq)] #[xml(namespace = ns::DEFAULT_NS, name = "priority")] -pub struct Priority(#[xml(text)] i8); +pub struct Priority(#[xml(text)] pub i8); /// Accepted values for the 'type' attribute of a presence. #[derive(Debug, Default, Clone, PartialEq)]