Welcome to mirror list, hosted at ThFree Co, Russian Federation.

dev.gajim.org/gajim/python-nbxmpp.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYann Leboulanger <asterix@lagaule.org>2016-09-04 14:50:23 +0300
committerYann Leboulanger <asterix@lagaule.org>2016-09-04 14:50:23 +0300
commit44b8365a76c434be407e5f699104d8ba29256ef6 (patch)
tree8708c09731cd0925a73c62f75834d352f1397aec
parent4cdded1c91c7a1446ec13efd8038efd3b253230b (diff)
prepare 0.5.4 releasenbxmpp-0.5.4
-rw-r--r--ChangeLog7
-rw-r--r--nbxmpp/__init__.py2
-rwxr-xr-xsetup.py2
3 files changed, 9 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index 47dc0e8..edb55fc 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+python-nbxmpp 0.5.4 (04 September 2016)
+
+ * Fix SCRAM authentication
+ * Fix BOSH connection with UTF-8 messages
+ * Fix smacks implementation
+ * Use uuid in stanza ids
+
python-nbxmpp 0.5.3 (13 July 2015)
* Fix receiving long utf8 strings under py3
diff --git a/nbxmpp/__init__.py b/nbxmpp/__init__.py
index d6197b9..779e045 100644
--- a/nbxmpp/__init__.py
+++ b/nbxmpp/__init__.py
@@ -17,4 +17,4 @@ from .client_nb import NonBlockingClient
from .plugin import PlugIn
from .smacks import Smacks
-__version__ = "0.5.3"
+__version__ = "0.5.4"
diff --git a/setup.py b/setup.py
index 15bc51a..94ae506 100755
--- a/setup.py
+++ b/setup.py
@@ -3,7 +3,7 @@
from distutils.core import setup
setup(name='nbxmpp',
- version='0.5.3',
+ version='0.5.4',
description='Non blocking Jabber/XMPP module',
author='Yann Leboulanger',
author_email='asterix@lagaule.org',