websockify 0.13.0

This commit is contained in:
Alexander Zeijlon 2025-02-12 11:45:01 +01:00
parent 0d519b9c18
commit e818947513
2 changed files with 9 additions and 1 deletions

View File

@ -1,6 +1,14 @@
Changes
=======
0.13.0
------
* Support for Python < 3.6 has been dropped.
* SNI is enabled when connecting to an SSL target as an SSL client.
* The TokenRedis plugin handles namespaces.
* Headers are sanitized before being passed to authentication plugins.
0.12.0
------

View File

@ -1,6 +1,6 @@
from setuptools import setup, find_packages
version = '0.12.0'
version = '0.13.0'
name = 'websockify'
long_description = open("README.md").read() + "\n" + \
open("CHANGES.txt").read() + "\n"