Skip to content

Commit 354f530

Browse files
committedJan 24, 2019
Release v4.0.0
1 parent 8f6edd5 commit 354f530

File tree

4 files changed

+16
-8
lines changed

4 files changed

+16
-8
lines changed
 

‎CHANGELOG.rst

+12-4
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,20 @@
11
Changelog
22
*********
33

4-
`Unreleased`_ (YYYY-MM-DD)
5-
--------------------------
4+
`4.0.0`_ (2018-01-24)
5+
---------------------
66

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.
88

99
- 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
1018

1119
`3.1.2`_ (2019-01-08)
1220
---------------------
@@ -78,7 +86,7 @@ support the `disconnected` message before upgrading.
7886
.. _#90: https://github.com/saltyrtc/saltyrtc-server-python/issues/90
7987
.. _SaltyRTC 1.0 Protocol: https://github.com/saltyrtc/saltyrtc-meta/blob/protocol-1.0/Protocol.md
8088

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
8290
.. _3.1.2: https://github.com/saltyrtc/saltyrtc-server-python/compare/v3.1.1...v3.1.2
8391
.. _3.1.1: https://github.com/saltyrtc/saltyrtc-server-python/compare/v3.1.0...v3.1.1
8492
.. _3.1.0: https://github.com/saltyrtc/saltyrtc-server-python/compare/v3.0.1...v3.1.0

‎RELEASING.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ Signing key: https://lgrahl.de/pub/pgp-key.txt
88
```bash
99
flake8 .
1010
isort -rc -c . || isort -rc -df
11-
MYPYPATH=${PWD}/stubs mypy saltyrtc examples
11+
rm -rf .mypy_cache && MYPYPATH=${PWD}/stubs mypy saltyrtc examples
1212
py.test
1313
```
1414

@@ -35,7 +35,7 @@ Signing key: https://lgrahl.de/pub/pgp-key.txt
3535
5. Build source and binary distributions:
3636

3737
```bash
38-
rm -rf build dist saltyrtc.server.egg-info
38+
rm -rf build dist saltyrtc.server.egg-info .mypy_cache
3939
find . \( -name \*.pyc -o -name \*.pyo -o -name __pycache__ \) -prune -exec rm -rf {} +
4040
python setup.py sdist bdist_wheel
4141
```

‎saltyrtc/server/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,4 +25,4 @@
2525

2626
__author__ = 'Lennart Grahl <lennart.grahl@gmail.com>'
2727
__status__ = 'Production'
28-
__version__ = '3.1.2'
28+
__version__ = '4.0.0'

‎setup.cfg

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bdist_wheel]
2-
python-tag = py34.py35.py36.py37
2+
python-tag = py35.py36.py37
33

44
[easy_install]
55
zip_ok = false

0 commit comments

Comments
 (0)
Please sign in to comment.