parent
4e6938e9c2
commit
1f132f9d84
11
CHANGES.txt
11
CHANGES.txt
|
|
@ -1,6 +1,17 @@
|
||||||
Changes
|
Changes
|
||||||
=======
|
=======
|
||||||
|
|
||||||
|
0.8.0
|
||||||
|
-----
|
||||||
|
|
||||||
|
* Make websockify properly terminate children on SIGTERM (#226)
|
||||||
|
* Remove logging in signal handlers (this can cause Python to hang under certain conditions) (#219)
|
||||||
|
* Make it easier to log to a file (#205)
|
||||||
|
* Add support for IPv6 addresses in tokens in the TokenFile token plugins (#197)
|
||||||
|
* Improve auth plugin framework to enable better support for HTTP auth (#194, #201)
|
||||||
|
* Fix bug in JSONTokenAPI token plugin (#192)
|
||||||
|
* Fix a missing variable in the exception handler (#178)
|
||||||
|
|
||||||
0.7.0
|
0.7.0
|
||||||
-----
|
-----
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -3,7 +3,7 @@
|
||||||
"name": "websockify",
|
"name": "websockify",
|
||||||
"description": "websockify is a WebSocket-to-TCP proxy/bridge",
|
"description": "websockify is a WebSocket-to-TCP proxy/bridge",
|
||||||
"license": "LGPL-3.0",
|
"license": "LGPL-3.0",
|
||||||
"version": "0.7.1",
|
"version": "0.8.0",
|
||||||
"repository": {
|
"repository": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "git://github.com/kanaka/websockify.git"
|
"url": "git://github.com/kanaka/websockify.git"
|
||||||
|
|
|
||||||
2
setup.py
2
setup.py
|
|
@ -1,6 +1,6 @@
|
||||||
from setuptools import setup, find_packages
|
from setuptools import setup, find_packages
|
||||||
|
|
||||||
version = '0.7.0'
|
version = '0.8.0'
|
||||||
name = 'websockify'
|
name = 'websockify'
|
||||||
long_description = open("README.md").read() + "\n" + \
|
long_description = open("README.md").read() + "\n" + \
|
||||||
open("CHANGES.txt").read() + "\n"
|
open("CHANGES.txt").read() + "\n"
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue