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 <yann@leboulanger.org>2017-11-29 23:23:59 +0300
committerYann Leboulanger <yann@leboulanger.org>2017-11-29 23:23:59 +0300
commite79bf2856f3b9f1bec4b6831b8473f5c26384c2e (patch)
tree528b4550ec7077550535a233ffb62c2fd13548c0
parentef78e16c87afc84f481c567cccc4bff8731e690d (diff)
prepare 0.6.1 releasenbxmpp-0.6.1
-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 49ef739..0567b9b 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+python-nbxmpp 0.6.1 (29 November 2017)
+
+ * Add new getStanzaIDAttrs method
+ * Fix BOSH connexion
+ * stop using PyOpenSSL for random generator
+
python-nbxmpp 0.6.0 (25 September 2017)
* Add new getOriginID/SetOriginID method for Messages
diff --git a/nbxmpp/__init__.py b/nbxmpp/__init__.py
index 4f6d5c0..2dd6c7d 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.6.0"
+__version__ = "0.6.1"
diff --git a/setup.py b/setup.py
index 1f66535..02c0fca 100755
--- a/setup.py
+++ b/setup.py
@@ -3,7 +3,7 @@
from distutils.core import setup
setup(name='nbxmpp',
- version='0.6.0',
+ version='0.6.1',
description='Non blocking Jabber/XMPP module',
author='Yann Leboulanger',
author_email='asterix@lagaule.org',