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.
This commit is contained in:
Solly Ross
2015-05-11 10:35:55 -04:00
parent d626fed76a
commit cd4bc7590e
3 changed files with 7 additions and 2 deletions
+5
View File
@@ -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
--------------------
+1 -1
View File
@@ -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"
+1 -1
View File
@@ -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"