prepare for 0.13.1

This commit is contained in:
Tobias Oberstein 2016-04-09 14:06:50 +02:00
parent c86fe266bf
commit dc949e6c38
3 changed files with 11 additions and 2 deletions

View File

@ -24,7 +24,7 @@
#
###############################################################################
__version__ = u'0.13.0'
__version__ = u'0.13.1'
"""
AutobahnPython library version.
"""

View File

@ -5,6 +5,15 @@
Changelog
=========
0.13.1
------
`Published 2016-04-09 <https://pypi.python.org/pypi/autobahn/0.13.1>`_
* moved helper funs for WebSocket URL handling to ``autobahn.websocket.util``
* fix: marshal WAMP options only when needed
* fix: various smallish examples fixes
0.13.0
------

View File

@ -196,7 +196,7 @@ setup(
platforms='Any',
install_requires=[
'six>=1.10.0', # MIT license
'txaio>=2.2.2', # MIT license
'txaio>=2.3.0', # MIT license
],
extras_require={
'all': extras_require_all,