Skip to content

Commit

Permalink
Release v4.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
lgrahl committed Jan 24, 2019
1 parent 8f6edd5 commit 354f530
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 8 deletions.
16 changes: 12 additions & 4 deletions CHANGELOG.rst
@@ -1,12 +1,20 @@
Changelog
*********

`Unreleased`_ (YYYY-MM-DD)
--------------------------
`4.0.0`_ (2018-01-24)
---------------------

**Important:** Make sure you're using Python >= 3.5 before upgrading.
**Important:** Make sure you're using Python >= 3.5.2 before upgrading.

- Drop Python 3.4 support (major)
- Deprecate the CLI options `-sc`, `--sslcert` and `-sk`, `--sslkey`. Use
`-tc`, `--tlscert` and `-tk`, `--tlskey` instead.
- Add type hints
- Fix discard string messages
- Fix validate received client ID types correctly
- Fix validate received sub-protocols correctly
- Fix a race condition during the handshake when one client drops another
- Cleanup of the code base

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

.. _Unreleased: https://github.com/saltyrtc/saltyrtc-server-python/compare/v3.1.1...HEAD
.. _4.0.0: https://github.com/saltyrtc/saltyrtc-server-python/compare/v3.1.2...v4.0.0
.. _3.1.2: https://github.com/saltyrtc/saltyrtc-server-python/compare/v3.1.1...v3.1.2
.. _3.1.1: https://github.com/saltyrtc/saltyrtc-server-python/compare/v3.1.0...v3.1.1
.. _3.1.0: https://github.com/saltyrtc/saltyrtc-server-python/compare/v3.0.1...v3.1.0
Expand Down
4 changes: 2 additions & 2 deletions RELEASING.md
Expand Up @@ -8,7 +8,7 @@ Signing key: https://lgrahl.de/pub/pgp-key.txt
```bash
flake8 .
isort -rc -c . || isort -rc -df
MYPYPATH=${PWD}/stubs mypy saltyrtc examples
rm -rf .mypy_cache && MYPYPATH=${PWD}/stubs mypy saltyrtc examples
py.test
```

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

```bash
rm -rf build dist saltyrtc.server.egg-info
rm -rf build dist saltyrtc.server.egg-info .mypy_cache
find . \( -name \*.pyc -o -name \*.pyo -o -name __pycache__ \) -prune -exec rm -rf {} +
python setup.py sdist bdist_wheel
```
Expand Down
2 changes: 1 addition & 1 deletion saltyrtc/server/__init__.py
Expand Up @@ -25,4 +25,4 @@

__author__ = 'Lennart Grahl <lennart.grahl@gmail.com>'
__status__ = 'Production'
__version__ = '3.1.2'
__version__ = '4.0.0'
2 changes: 1 addition & 1 deletion setup.cfg
@@ -1,5 +1,5 @@
[bdist_wheel]
python-tag = py34.py35.py36.py37
python-tag = py35.py36.py37

[easy_install]
zip_ok = false
Expand Down

0 comments on commit 354f530

Please sign in to comment.