File tree 4 files changed +16
-8
lines changed
4 files changed +16
-8
lines changed Original file line number Diff line number Diff line change 1
1
Changelog
2
2
*********
3
3
4
- `Unreleased `_ (YYYY-MM-DD )
5
- --------------------------
4
+ `4.0.0 `_ (2018-01-24 )
5
+ ---------------------
6
6
7
- **Important: ** Make sure you're using Python >= 3.5 before upgrading.
7
+ **Important: ** Make sure you're using Python >= 3.5.2 before upgrading.
8
8
9
9
- Drop Python 3.4 support (major)
10
+ - Deprecate the CLI options `-sc `, `--sslcert ` and `-sk `, `--sslkey `. Use
11
+ `-tc `, `--tlscert ` and `-tk `, `--tlskey ` instead.
12
+ - Add type hints
13
+ - Fix discard string messages
14
+ - Fix validate received client ID types correctly
15
+ - Fix validate received sub-protocols correctly
16
+ - Fix a race condition during the handshake when one client drops another
17
+ - Cleanup of the code base
10
18
11
19
`3.1.2 `_ (2019-01-08)
12
20
---------------------
@@ -78,7 +86,7 @@ support the `disconnected` message before upgrading.
78
86
.. _#90 : https://github.com/saltyrtc/saltyrtc-server-python/issues/90
79
87
.. _SaltyRTC 1.0 Protocol : https://github.com/saltyrtc/saltyrtc-meta/blob/protocol-1.0/Protocol.md
80
88
81
- .. _ Unreleased : https://github.com/saltyrtc/saltyrtc-server-python/compare/v3.1.1 ...HEAD
89
+ .. _ 4.0.0 : https://github.com/saltyrtc/saltyrtc-server-python/compare/v3.1.2 ...v4.0.0
82
90
.. _3.1.2 : https://github.com/saltyrtc/saltyrtc-server-python/compare/v3.1.1...v3.1.2
83
91
.. _3.1.1 : https://github.com/saltyrtc/saltyrtc-server-python/compare/v3.1.0...v3.1.1
84
92
.. _3.1.0 : https://github.com/saltyrtc/saltyrtc-server-python/compare/v3.0.1...v3.1.0
Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ Signing key: https://lgrahl.de/pub/pgp-key.txt
8
8
``` bash
9
9
flake8 .
10
10
isort -rc -c . || isort -rc -df
11
- MYPYPATH=${PWD} /stubs mypy saltyrtc examples
11
+ rm -rf .mypy_cache && MYPYPATH=${PWD} /stubs mypy saltyrtc examples
12
12
py.test
13
13
```
14
14
@@ -35,7 +35,7 @@ Signing key: https://lgrahl.de/pub/pgp-key.txt
35
35
5 . Build source and binary distributions:
36
36
37
37
``` bash
38
- rm -rf build dist saltyrtc.server.egg-info
38
+ rm -rf build dist saltyrtc.server.egg-info .mypy_cache
39
39
find . \( -name \* .pyc -o -name \* .pyo -o -name __pycache__ \) -prune -exec rm -rf {} +
40
40
python setup.py sdist bdist_wheel
41
41
```
Original file line number Diff line number Diff line change 25
25
26
26
__author__ = 'Lennart Grahl <lennart.grahl@gmail.com>'
27
27
__status__ = 'Production'
28
- __version__ = '3.1.2 '
28
+ __version__ = '4.0.0 '
Original file line number Diff line number Diff line change 1
1
[bdist_wheel]
2
- python-tag = py34. py35.py36.py37
2
+ python-tag = py35.py36.py37
3
3
4
4
[easy_install]
5
5
zip_ok = false
You can’t perform that action at this time.
0 commit comments