Skip to content

Commit d7084f8

Browse files
committed
Release v3.0.0
1 parent f9ed942 commit d7084f8

File tree

2 files changed

+17
-3
lines changed

2 files changed

+17
-3
lines changed

CHANGELOG.rst

Lines changed: 16 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,19 @@
11
Changelog
22
*********
33

4+
`3.0.0`_ (2018-12-18)
5+
---------------------
6+
7+
- Use the `timeout` close code (`3008`) when a client does not respond to a
8+
*ping* message (major)
9+
- Add support for Python 3.7
10+
- Various task queue improvements resulting in more robust client handling
11+
- Fix to not send a 'disconnected' message when a responder has been dropped
12+
via 'drop-responder'
13+
- Fix to prevent the initiator from relaying messages to a responder client
14+
which is in the process of being dropped
15+
- Fix to not accept new incoming connections when closing the server
16+
417
`2.0.1`_ (2018-08-20)
518
---------------------
619

@@ -10,8 +23,8 @@ Changelog
1023
`2.0.0`_ (2018-07-16)
1124
---------------------
1225

13-
**Important:** Make sure you're using Python >= 3.4.4 and that your clients support the
14-
`disconnected` message before upgrading.
26+
**Important:** Make sure you're using Python >= 3.4.4 and that your clients
27+
support the `disconnected` message before upgrading.
1528

1629
- Add support for the `disconnected` message (major)
1730
- Fix potential invalid order of messages when dispatching a `send-error`
@@ -37,6 +50,7 @@ Changelog
3750

3851
.. _SaltyRTC 1.0 Protocol: https://github.com/saltyrtc/saltyrtc-meta/blob/protocol-1.0/Protocol.md
3952

53+
.. _3.0.0: https://github.com/saltyrtc/saltyrtc-server-python/compare/v2.0.1...v3.0.0
4054
.. _2.0.1: https://github.com/saltyrtc/saltyrtc-server-python/compare/v2.0.0...v2.0.1
4155
.. _2.0.0: https://github.com/saltyrtc/saltyrtc-server-python/compare/v1.0.2...v2.0.0
4256
.. _1.0.2: https://github.com/saltyrtc/saltyrtc-server-python/compare/v1.0.1...v1.0.2

saltyrtc/server/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,4 +32,4 @@
3232

3333
__author__ = 'Lennart Grahl <[email protected]>'
3434
__status__ = 'Production'
35-
__version__ = '2.0.1'
35+
__version__ = '3.0.0'

0 commit comments

Comments
 (0)