summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoel Martin <github@martintribe.org>2013-01-15 11:49:08 -0600
committerJoel Martin <github@martintribe.org>2013-01-15 11:49:08 -0600
commit3d37d21b5f0b35289aa485f498ddea4cb61f1a2e (patch)
tree8e85bd2de3d0f89d212a66b55dccd2efc05262d1
parentc33f0b52e72017ca1e631f576743ff465c2b5d44 (diff)
downloadwebsockify-0.3.0.tar.gz
Update to version 0.3.0 and upload to pypi.v0.3.0
Update to 0.3.0 and document uploading to pypi.python.org. Install thus: sudo pip install websockify
-rw-r--r--CHANGES.txt8
-rw-r--r--docs/release.txt5
-rw-r--r--setup.py2
3 files changed, 13 insertions, 2 deletions
diff --git a/CHANGES.txt b/CHANGES.txt
index 0ed52b8..1480a3c 100644
--- a/CHANGES.txt
+++ b/CHANGES.txt
@@ -1,6 +1,14 @@
Changes
=======
+0.3.0 - Jan 15, 2013
+--------------------
+
+ * refactor into modules: websocket, websocketproxy
+ * switch to web-socket-js that uses IETF 6455
+ * change to MPL 2.0 license for include/*.js
+ * fix session recording
+
0.2.1 - Oct 15, 2012
--------------------
diff --git a/docs/release.txt b/docs/release.txt
index 5750c88..611d4eb 100644
--- a/docs/release.txt
+++ b/docs/release.txt
@@ -6,4 +6,7 @@
git push origin v${WVER}
git archive --format=tar --prefix=websockify-${WVER}/ v${WVER} > websockify-${WVER}.tar
gzip websockify-${WVER}.tar
-- Upload tarball to repo
+- Register with pypi.python.org (once):
+ python setup.py register
+- Upload the source distribution to pypi
+ python setup.py sdist upload
diff --git a/setup.py b/setup.py
index ebf5e61..ab44ef7 100644
--- a/setup.py
+++ b/setup.py
@@ -1,6 +1,6 @@
from setuptools import setup, find_packages
-version = '0.2.1'
+version = '0.3.0'
name = 'websockify'
long_description = open("README.md").read() + "\n" + \
open("CHANGES.txt").read() + "\n"