From 59dcd02a91657f2dca838fc463571fcbb134142e Mon Sep 17 00:00:00 2001 From: Roy Hyunjin Han Date: Mon, 1 Jun 2015 14:31:46 -0400 Subject: [PATCH] Prepare for minor release --- CHANGES.rst | 9 +++++++++ README.rst | 4 ++-- setup.py | 2 +- 3 files changed, 12 insertions(+), 3 deletions(-) diff --git a/CHANGES.rst b/CHANGES.rst index 2839626..cf4bf4a 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,3 +1,8 @@ +0.6.4 +----- +- Fixed support for Python 3 +- Fixed thread cleanup + 0.6.3 ----- - Upgraded to socket.io protocol 1.x for websocket transport @@ -8,6 +13,10 @@ ----- - Upgraded to socket.io protocol 1.x thanks to Sean Arietta and Joe Palmer +0.5.6 +----- +- Backported to support requests 0.8.2 + 0.5.5 ----- - Fixed reconnection in the event of server restart diff --git a/README.rst b/README.rst index 017cb3b..4f544b2 100644 --- a/README.rst +++ b/README.rst @@ -6,7 +6,7 @@ socketIO-client =============== Here is a `socket.io `_ client library for Python. You can use it to write test code for your socket.io server. -Please note that this version implements `socket.io protocol 1.x `_, which is not backwards compatible. If you want to communicate using `socket.io protocol 0.9 `_ (e.g. `gevent-socketio `_), please use `socketIO-client 0.5.5 `_. +Please note that this version implements `socket.io protocol 1.x `_, which is not backwards compatible. If you want to communicate using `socket.io protocol 0.9 `_ (which is compatible with `gevent-socketio `_), please use `socketIO-client 0.5.6 `_. Installation @@ -166,5 +166,5 @@ Credits - `Alexandre Bourget `_ wrote `gevent-socketio `_, which is a socket.io server written in Python. - `Paul Kienzle `_, `Zac Lee `_, `Josh VanderLinden `_, `Ian Fitzpatrick `_, `Lucas Klein `_, `Rui Chicoria `_, `Travis Odom `_, `Patrick Huber `_, `Brad Campbell `_, `Daniel `_, `Sean Arietta `_ submitted code to expand support of the socket.io protocol. - `Bernard Pratz `_, `Francis Bull `_ wrote prototypes to support xhr-polling and jsonp-polling. -- `Eric Chen `_, `Denis Zinevich `_, `Thiago Hersan `_, `Nayef Copty `_, `Jörgen Karlsson `_, `Branden Ghena `_ suggested ways to make the connection more robust. +- `Eric Chen `_, `Denis Zinevich `_, `Thiago Hersan `_, `Nayef Copty `_, `Jörgen Karlsson `_, `Branden Ghena `_, `Tim Landscheidt `_, `Matt Porritt `_ suggested ways to make the connection more robust. - `Merlijn van Deen `_, `Frederic Sureau `_, `Marcus Cobden `_, `Drew Hutchison `_, `wuurrd `_, `Adam Kecer `_, `Alex Monk `_, `Vishal P R `_, `John Vandenberg `_, `Thomas Grainger `_ proposed changes that make the library more friendly and practical for you! diff --git a/setup.py b/setup.py index b27975b..8b0f71b 100644 --- a/setup.py +++ b/setup.py @@ -18,7 +18,7 @@ DESCRIPTION = '\n\n'.join(LOAD_TEXT(_) for _ in [ ]) setup( name='socketIO_client', - version='0.6.3', + version='0.6.4', description='A socket.io client library', long_description=DESCRIPTION, license='MIT',