parent
558a6439f1
commit
69c04c819c
17
CHANGES.txt
17
CHANGES.txt
|
|
@ -1,6 +1,23 @@
|
||||||
Changes
|
Changes
|
||||||
=======
|
=======
|
||||||
|
|
||||||
|
0.7.0
|
||||||
|
-----
|
||||||
|
|
||||||
|
* Python 3 support fixes (#140, #155, #159)
|
||||||
|
* Generic token-parsing plugins support (#162)
|
||||||
|
* Generic authentication plugins support (#172)
|
||||||
|
* Fixed frame corruption on big-endian systems (#161)
|
||||||
|
* Support heartbeats (via PING) and automatic responses to PONG (#169)
|
||||||
|
* Automatically reject unmasked client frames by default (strict mode) (#174)
|
||||||
|
* Automatically restart interrupted select calls (#175)
|
||||||
|
* Make 'run' respect environment settings (including virtualenv) (#176)
|
||||||
|
|
||||||
|
0.6.1 - May 11, 2015
|
||||||
|
--------------------
|
||||||
|
|
||||||
|
* **PATCH RELEASE**: Fixes a bug causing file_only to not be passed properly
|
||||||
|
|
||||||
0.6.0 - Feb 18, 2014
|
0.6.0 - Feb 18, 2014
|
||||||
--------------------
|
--------------------
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -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",
|
"license": "LGPL-3",
|
||||||
"version": "0.6.0",
|
"version": "0.7.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.6.0'
|
version = '0.7.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