Skip to content

Commit 69c04c8

Browse files
committed
Update to 0.7.0
See CHANGES.txt for details.
1 parent 558a643 commit 69c04c8

3 files changed

Lines changed: 19 additions & 2 deletions

File tree

CHANGES.txt

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,23 @@
11
Changes
22
=======
33

4+
0.7.0
5+
-----
6+
7+
* Python 3 support fixes (#140, #155, #159)
8+
* Generic token-parsing plugins support (#162)
9+
* Generic authentication plugins support (#172)
10+
* Fixed frame corruption on big-endian systems (#161)
11+
* Support heartbeats (via PING) and automatic responses to PONG (#169)
12+
* Automatically reject unmasked client frames by default (strict mode) (#174)
13+
* Automatically restart interrupted select calls (#175)
14+
* Make 'run' respect environment settings (including virtualenv) (#176)
15+
16+
0.6.1 - May 11, 2015
17+
--------------------
18+
19+
* **PATCH RELEASE**: Fixes a bug causing file_only to not be passed properly
20+
421
0.6.0 - Feb 18, 2014
522
--------------------
623

other/js/package.json

Lines changed: 1 addition & 1 deletion
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",
6-
"version": "0.6.0",
6+
"version": "0.7.0",
77
"repository": {
88
"type": "git",
99
"url": "git://github.com/kanaka/websockify.git"

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
from setuptools import setup, find_packages
22

3-
version = '0.6.0'
3+
version = '0.7.0'
44
name = 'websockify'
55
long_description = open("README.md").read() + "\n" + \
66
open("CHANGES.txt").read() + "\n"

0 commit comments

Comments
 (0)