From cd4bc7590ee2f65e94cd3beea3eafaeae7cb6842 Mon Sep 17 00:00:00 2001 From: Solly Ross Date: Mon, 11 May 2015 10:35:55 -0400 Subject: [PATCH] Update to 0.6.1 This is a minor patch release which fixes the functionality of the file_only parameter and prevents uninteded directory listings. --- CHANGES.txt | 5 +++++ other/js/package.json | 2 +- setup.py | 2 +- 3 files changed, 7 insertions(+), 2 deletions(-) diff --git a/CHANGES.txt b/CHANGES.txt index 76a5c55e..ff66a920 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 c1422b8a..dcc2d638 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 0ea9cce3..6ebea9d1 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"