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>2015-07-16 22:09:50 +0300
committerYann Leboulanger <asterix@lagaule.org>2015-07-16 22:09:50 +0300
commit4e23acb0c11be755100a5101cc7a1ed1982eab43 (patch)
tree1b57e0b214ae49d4e5b29c92c4dc4b2a2b34bd0c
parent35a77da67d840e5f9ebba31266ecc76e3091e440 (diff)
prepare 0.5.3 releasenbxmpp-0.5.3
-rw-r--r--ChangeLog6
-rw-r--r--nbxmpp/__init__.py2
-rwxr-xr-xsetup.py2
3 files changed, 8 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index ce45180..47dc0e8 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+python-nbxmpp 0.5.3 (13 July 2015)
+
+ * Fix receiving long utf8 strings under py3
+ * Fix issue with pyopenssl 0.15.1
+ * Fix decoding issues
+
python-nbxmpp 0.5.2 (27 December 2014)
* Fix BOSH HTTP requests
diff --git a/nbxmpp/__init__.py b/nbxmpp/__init__.py
index e8475be..d6197b9 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.2"
+__version__ = "0.5.3"
diff --git a/setup.py b/setup.py
index c796b5e..15bc51a 100755
--- a/setup.py
+++ b/setup.py
@@ -3,7 +3,7 @@
from distutils.core import setup
setup(name='nbxmpp',
- version='0.5.2',
+ version='0.5.3',
description='Non blocking Jabber/XMPP module',
author='Yann Leboulanger',
author_email='asterix@lagaule.org',