diff options
author | Pierre Ossman <ossman@cendio.se> | 2021-07-22 17:11:08 +0200 |
---|---|---|
committer | Pierre Ossman <ossman@cendio.se> | 2021-07-22 17:11:08 +0200 |
commit | 1c35fdd72bc94958b04add2e9604b22a05390e16 (patch) | |
tree | 9cfa34f884ab16c6bec2a2a5ff51a52d08be5e1d | |
parent | eca301c05b5a5ae9b6896128a44fe2b6c7883c4d (diff) | |
download | websockify-1c35fdd72bc94958b04add2e9604b22a05390e16.tar.gz |
websockify 0.10.0
-rw-r--r-- | CHANGES.txt | 10 | ||||
-rw-r--r-- | setup.py | 2 |
2 files changed, 11 insertions, 1 deletions
diff --git a/CHANGES.txt b/CHANGES.txt index a440576..41321a3 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -1,6 +1,16 @@ Changes ======= +0.10.0 +------ + +* Python 3.4 or newer is now required +* Empty message frames are now supported +* Tokens can now specify a Unix domain socket file to connect to +* Time limits on JWT tokens are now respected +* Whitespace is better tolerated in token files +* Lots of minor fixes... + 0.9.0 ----- @@ -1,6 +1,6 @@ from setuptools import setup, find_packages -version = '0.9.0' +version = '0.10.0' name = 'websockify' long_description = open("README.md").read() + "\n" + \ open("CHANGES.txt").read() + "\n" |