File tree 3 files changed +13
-2
lines changed
3 files changed +13
-2
lines changed Original file line number Diff line number Diff line change 1
1
Changes
2
2
=======
3
3
4
+ 0.8.0
5
+ -----
6
+
7
+ * Make websockify properly terminate children on SIGTERM (#226)
8
+ * Remove logging in signal handlers (this can cause Python to hang under certain conditions) (#219)
9
+ * Make it easier to log to a file (#205)
10
+ * Add support for IPv6 addresses in tokens in the TokenFile token plugins (#197)
11
+ * Improve auth plugin framework to enable better support for HTTP auth (#194, #201)
12
+ * Fix bug in JSONTokenAPI token plugin (#192)
13
+ * Fix a missing variable in the exception handler (#178)
14
+
4
15
0.7.0
5
16
-----
6
17
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.0" ,
6
- "version" : " 0.7.1 " ,
6
+ "version" : " 0.8.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.7 .0'
3
+ version = '0.8 .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