Update to version 0.5.1
*** NOTE *** This version of websockify no longer supports the old Hixie protocol.
This commit is contained in:
parent
36cb8f4676
commit
264f8fdd7f
10
CHANGES.txt
10
CHANGES.txt
|
|
@ -1,6 +1,16 @@
|
||||||
Changes
|
Changes
|
||||||
=======
|
=======
|
||||||
|
|
||||||
|
0.5.1 - Jun 27, 2013
|
||||||
|
--------------------
|
||||||
|
|
||||||
|
* use upstream einaros/ws (>=0.4.27) with websockify.js
|
||||||
|
* file_only and no_parent security options for WSRequestHandler
|
||||||
|
* Update build of web-socket-js (c0855c6cae)
|
||||||
|
* add include/web-socket-js-project submodule to gimite/web-socket-js
|
||||||
|
for DSFG compliance.
|
||||||
|
* drop Hixie protocol support
|
||||||
|
|
||||||
0.4.1 - Mar 12, 2013
|
0.4.1 - Mar 12, 2013
|
||||||
--------------------
|
--------------------
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
- Update setup.py and CHANGES.txt and commit
|
- Update setup.py, CHANGES.txt and other/package.json and commit
|
||||||
- Create version tag and tarball from tag
|
- Create version tag and tarball from tag
|
||||||
WVER=0.1.0
|
WVER=0.1.0
|
||||||
git tag v${WVER}
|
git tag v${WVER}
|
||||||
|
|
@ -8,3 +8,6 @@
|
||||||
python setup.py register
|
python setup.py register
|
||||||
- Upload the source distribution to pypi
|
- Upload the source distribution to pypi
|
||||||
python setup.py sdist upload
|
python setup.py sdist upload
|
||||||
|
- Register with npmjs.org (once)
|
||||||
|
- Upload websockify.js npmjs.org package
|
||||||
|
npm publish other/js
|
||||||
|
|
|
||||||
|
|
@ -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.5.0-pre",
|
"version": "0.5.1",
|
||||||
"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.5.0-pre'
|
version = '0.5.1'
|
||||||
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