diff --git a/ChangeLog b/ChangeLog index f9c85c46e4adb3a9dcff2ca26b14bbac69399ffa..67793b6678c643380ae693ca87cb3564ac3eeda5 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,10 @@ +python-nbxmpp 2.0.4 (09 October 2021) + + Bugfixes + + * Ignore messages with incorrect id + * AdHoc: Make parsing AdHoc commands more compliant + python-nbxmpp 2.0.3 (24 July 2021) Bugfixes diff --git a/nbxmpp/__init__.py b/nbxmpp/__init__.py index 4f8f32b0fd48ef28036dc3e0b6db94052b450138..63ef1751eb86500b88bc940bf5ad027e913986f7 100644 --- a/nbxmpp/__init__.py +++ b/nbxmpp/__init__.py @@ -4,4 +4,4 @@ from .protocol import * gi.require_version('Soup', '2.4') -__version__ = "2.0.3" +__version__ = "2.0.4" diff --git a/setup.cfg b/setup.cfg index 06dd9103e6719693ac105e24ab87c96e0a4e7233..bbdd22567a8724726571cdb2a4ee3fffafb20e7d 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,6 +1,6 @@ [metadata] name = nbxmpp -version = 2.0.3 +version = 2.0.4 description = XMPP Library author = Yann Leboulanger, Philipp Hoerist author_email = gajim-devel@gajim.org