Skip to content

Commit 739af6e

Browse files
committed
Update to v0.6.0
*** NOTE *** This version of websockify will break existing code which sub-classes `WebsocketProxy` -- see pull requests #110 and #111
1 parent 56b740e commit 739af6e

File tree

3 files changed

+11
-2
lines changed

3 files changed

+11
-2
lines changed

CHANGES.txt

+9
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,15 @@
11
Changes
22
=======
33

4+
0.6.0 - Feb 18, 2014
5+
--------------------
6+
7+
* **NOTE** : 0.6.0 will break existing code that sub-classes WebsocketProxy
8+
* Refactor to use standard SocketServer RequestHandler design
9+
* Fix zombie process bug on certain systems when using multiprocessing
10+
* Add better unit tests
11+
* Log information via python `logging` module
12+
413
0.5.1 - Jun 27, 2013
514
--------------------
615

other/js/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"name": "websockify",
44
"description": "websockify is a WebSocket-to-TCP proxy/bridge",
55
"license": "LGPL-3",
6-
"version": "0.5.1",
6+
"version": "0.6.0",
77
"repository": {
88
"type": "git",
99
"url": "git://github.com/kanaka/websockify.git"

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
from setuptools import setup, find_packages
22

3-
version = '0.5.1'
3+
version = '0.6.0'
44
name = 'websockify'
55
long_description = open("README.md").read() + "\n" + \
66
open("CHANGES.txt").read() + "\n"

0 commit comments

Comments
 (0)