Skip to content
GitLab
Explore
Sign in
Register
Commits on Source (2)
Update ChangeLog
· b9fc712e
Philipp Hörist
authored
May 19, 2018
b9fc712e
Prepare 0.6.6
· 7256d13e
Philipp Hörist
authored
May 19, 2018
7256d13e
Hide whitespace changes
Inline
Side-by-side
ChangeLog
View file @
7256d13e
python-nbxmpp 0.6.6 (20 May 2018)
* Record all SSL errors instead of only the first
* Pass arguments to plugin/plugout methods
* Allow the Roster to be initalized without requesting it from the server
python-nbxmpp 0.6.5 (30 April 2018)
* Fix BOSH usage (don't set ALPN)
...
...
nbxmpp/__init__.py
View file @
7256d13e
...
...
@@ -17,4 +17,4 @@ from .client_nb import NonBlockingClient
from
.plugin
import
PlugIn
from
.smacks
import
Smacks
__version__
=
"
0.6.
5
"
__version__
=
"
0.6.
6
"
setup.py
View file @
7256d13e
...
...
@@ -3,10 +3,10 @@
from
distutils.core
import
setup
setup
(
name
=
'
nbxmpp
'
,
version
=
'
0.6.
5
'
,
version
=
'
0.6.
6
'
,
description
=
'
Non blocking Jabber/XMPP module
'
,
author
=
'
Yann Leboulanger
'
,
author_email
=
'
asterix@lagaule.org
'
,
url
=
'
http://dev.gajim.org/gajim/python-nbxmpp
'
,
packages
=
[
'
nbxmpp
'
],
)
)