websockify 0.12.0

This commit is contained in:
Pierre Ossman 2024-06-03 14:34:30 +02:00
parent eb4ea05ccd
commit 99f83ca083
2 changed files with 8 additions and 1 deletions

View File

@ -1,6 +1,13 @@
Changes Changes
======= =======
0.12.0
------
* The simplejson module is no longer needed for redis token support
* redis tokens can now be either JSON or plain text
* websockify can now listen to a Unix socket for incoming connections
0.11.0 0.11.0
------ ------

View File

@ -1,6 +1,6 @@
from setuptools import setup, find_packages from setuptools import setup, find_packages
version = '0.11.0' version = '0.12.0'
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"