Skip to content

Commit 4a3b1cb

Browse files
committed
Bump and release 0.15.0
1 parent a5a2de7 commit 4a3b1cb

File tree

2 files changed

+20
-2
lines changed

2 files changed

+20
-2
lines changed

Diff for: CHANGELOG.rst

+19-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,24 @@
1-
0.15.0 Unreleased
1+
0.15.0 2019-08-10
22
-----------------
33

4+
*This contains all the Bugfixes in the 0.14 branch.*
5+
6+
* Drop support for Python 2. Please pin to ~= 0.14.0 if you support
7+
Python 2.
8+
* Drop support for Python 3.5, meaning the minimum supported version
9+
is Python 3.6.1.
10+
* Switch events to be dataclass based, otherwise the API is
11+
consistent.
12+
* Add type hints throughout and support PEP 561 via a py.typed
13+
file. This should allow projects that use wsproto to type check their
14+
usage of wsproto.
15+
* Bugfix prevent the test folder being installed as a package called
16+
test.
17+
* Explicitly require Host header in handshake.
18+
* Drop wsaccel support and utilise the aiohttp/@willmcgugan masking
19+
method. wsaccel is unmaintained and this new maksing method is
20+
almost as quick.
21+
422
0.14.1 2019-05-30
523
-----------------
624

Diff for: wsproto/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
from .handshake import H11Handshake
1313
from .typing import Headers
1414

15-
__version__ = "0.14.0+dev"
15+
__version__ = "0.15.0"
1616

1717

1818
class WSConnection:

0 commit comments

Comments
 (0)