xmpp-parsers/bookmarks2: Bump XEP-0402 version in DOAP and ChangeLog.

Emmanuel Gil Peyrot created

Change summary

xmpp-parsers/ChangeLog         | 2 ++
xmpp-parsers/doap.xml          | 2 +-
xmpp-parsers/src/bookmarks2.rs | 2 ++
3 files changed, 5 insertions(+), 1 deletion(-)

Detailed changes

xmpp-parsers/ChangeLog 🔗

@@ -12,6 +12,8 @@ UNRELEASED  Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
         - Bump XEP-0167 to version 1.2.0, adding rtcp-mux.
         - Bump XEP-0176 to version 1.1, fixing interoperability with other
           clients.
+        - Bump XEP-0402 to version 1.1.1, bumping its namespace and adding
+          support for extension data.
         - Bump all dependencies to their latest version.
         - Some more helper constructors.
         - Make public some stuff that should have been public from the very

xmpp-parsers/doap.xml 🔗

@@ -519,7 +519,7 @@
         <xmpp:SupportedXep>
             <xmpp:xep rdf:resource="https://xmpp.org/extensions/xep-0402.html"/>
             <xmpp:status>complete</xmpp:status>
-            <xmpp:version>0.3.0</xmpp:version>
+            <xmpp:version>1.1.1</xmpp:version>
             <xmpp:since>0.16.0</xmpp:since>
         </xmpp:SupportedXep>
     </implements>

xmpp-parsers/src/bookmarks2.rs 🔗

@@ -77,6 +77,7 @@ impl TryFrom<Element> for Conference {
                     ));
                 }
                 check_no_children!(child, "nick");
+                check_no_attributes!(child, "nick");
                 conference.nick = Some(child.text());
             } else if child.is("password", ns::BOOKMARKS2) {
                 if conference.password.is_some() {
@@ -85,6 +86,7 @@ impl TryFrom<Element> for Conference {
                     ));
                 }
                 check_no_children!(child, "password");
+                check_no_attributes!(child, "password");
                 conference.password = Some(child.text());
             }
         }