Skip to content

Commit

Permalink
Release 1.2.3
Browse files Browse the repository at this point in the history
  * dtls/wrapper.py: Add optional parameter to DtlsSocket:
    client_timeout (seconds). If client_timeout is specified,
    clients that have not communicated within the time frame
    will be dropped.
  * setup.py: Version incremented to 1.2.3
  * dtls/__init__.py: Increment version
  • Loading branch information
rbit committed Apr 27, 2017
1 parent 80d05b7 commit 7cda052
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 2 deletions.
8 changes: 8 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
2017-04-27 Ray Brown <[email protected]>

Release 1.2.3

* dtls/wrapper.py: Add optional parameter to DtlsSocket: client_timeout (seconds). If client_timeout is specified, clients that have not communicated within the time frame will be dropped.
* setup.py: Version incremented to 1.2.3
* dtls/__init__.py: Increment version

2017-04-10 Ray Brown <[email protected]>

Release 1.2.2
Expand Down
2 changes: 1 addition & 1 deletion dtls/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
wrap_socket's parameters and their semantics have been maintained.
"""

VERSION = 1, 2, 2
VERSION = 1, 2, 3

def _prep_bins():
"""
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
from setuptools import setup

NAME = "Dtls"
VERSION = "1.2.2"
VERSION = "1.2.3"

if __name__ == "__main__":
# Full upload sequence for new version:
Expand Down

0 comments on commit 7cda052

Please sign in to comment.