summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSolly Ross <sross@redhat.com>2015-05-11 10:35:55 -0400
committerSolly Ross <sross@redhat.com>2015-05-11 10:35:55 -0400
commitcd4bc7590ee2f65e94cd3beea3eafaeae7cb6842 (patch)
treed3e2d232f232749cdddc6cc45ed9bc90215b8c13
parentd626fed76a4e8864041baaccc6068ac98081a3df (diff)
downloadwebsockify-patches.tar.gz
Update to 0.6.1v0.6.1patches
This is a minor patch release which fixes the functionality of the file_only parameter and prevents uninteded directory listings.
-rw-r--r--CHANGES.txt5
-rw-r--r--other/js/package.json2
-rw-r--r--setup.py2
3 files changed, 7 insertions, 2 deletions
diff --git a/CHANGES.txt b/CHANGES.txt
index 76a5c55..ff66a92 100644
--- a/CHANGES.txt
+++ b/CHANGES.txt
@@ -1,6 +1,11 @@
Changes
=======
+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
--------------------
diff --git a/other/js/package.json b/other/js/package.json
index c1422b8..dcc2d63 100644
--- a/other/js/package.json
+++ b/other/js/package.json
@@ -3,7 +3,7 @@
"name": "websockify",
"description": "websockify is a WebSocket-to-TCP proxy/bridge",
"license": "LGPL-3",
- "version": "0.6.0",
+ "version": "0.6.1",
"repository": {
"type": "git",
"url": "git://github.com/kanaka/websockify.git"
diff --git a/setup.py b/setup.py
index 0ea9cce..6ebea9d 100644
--- a/setup.py
+++ b/setup.py
@@ -1,6 +1,6 @@
from setuptools import setup, find_packages
-version = '0.6.0'
+version = '0.6.1'
name = 'websockify'
long_description = open("README.md").read() + "\n" + \
open("CHANGES.txt").read() + "\n"