Skip to content

Commit 1f132f9

Browse files
committed
Update to 0.8.0
See CHANGES.txt for more information
1 parent 4e6938e commit 1f132f9

File tree

3 files changed

+13
-2
lines changed

3 files changed

+13
-2
lines changed

CHANGES.txt

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

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+
415
0.7.0
516
-----
617

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.0",
6-
"version": "0.7.1",
6+
"version": "0.8.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.7.0'
3+
version = '0.8.0'
44
name = 'websockify'
55
long_description = open("README.md").read() + "\n" + \
66
open("CHANGES.txt").read() + "\n"

0 commit comments

Comments
 (0)