We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 582d052 commit 3501892Copy full SHA for 3501892
CHANGELOG.rst
@@ -1,6 +1,12 @@
1
-0.14.0 Unreleased
+0.14.0 2019-04-06
2
-----------------
3
4
+* Bugfix clarify subprotocol type as str not bytes.
5
+* Support HTTP/2 WebSockets. This requires a HTTP/2 parser (not
6
+ included), with hyper-h2 recommended. It renames
7
+ ``handshake_extensions`` and hence is a breaking change.
8
+* Bugfix badly formatted type hints.
9
+* Bugfix minor issues identified by type checking.
10
11
0.13.0 2019-01-24
12
wsproto/__init__.py
@@ -8,7 +8,7 @@
from .connection import ConnectionType
from .handshake import H11Handshake
-__version__ = "0.13.0+dev"
+__version__ = "0.14.0"
13
14
class WSConnection(object):
0 commit comments