File tree 3 files changed +11
-2
lines changed
3 files changed +11
-2
lines changed Original file line number Diff line number Diff line change 1
1
Changes
2
2
=======
3
3
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
+
4
13
0.5.1 - Jun 27, 2013
5
14
--------------------
6
15
Original file line number Diff line number Diff line change 3
3
"name" : " websockify" ,
4
4
"description" : " websockify is a WebSocket-to-TCP proxy/bridge" ,
5
5
"license" : " LGPL-3" ,
6
- "version" : " 0.5.1 " ,
6
+ "version" : " 0.6.0 " ,
7
7
"repository" : {
8
8
"type" : " git" ,
9
9
"url" : " git://github.com/kanaka/websockify.git"
Original file line number Diff line number Diff line change 1
1
from setuptools import setup , find_packages
2
2
3
- version = '0.5.1 '
3
+ version = '0.6.0 '
4
4
name = 'websockify'
5
5
long_description = open ("README.md" ).read () + "\n " + \
6
6
open ("CHANGES.txt" ).read () + "\n "
You can’t perform that action at this time.
0 commit comments