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
incoming
Ray 2017-04-27 13:53:12 -07:00
parent 80d05b7d82
commit 7cda052bac
3 changed files with 10 additions and 2 deletions

View File

@ -1,3 +1,11 @@
2017-04-27 Ray Brown <code@liquibits.com>
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 <code@liquibits.com>
Release 1.2.2

View File

@ -32,7 +32,7 @@ sockets.
wrap_socket's parameters and their semantics have been maintained.
"""
VERSION = 1, 2, 2
VERSION = 1, 2, 3
def _prep_bins():
"""

View File

@ -29,7 +29,7 @@ from pickle import dump, load
from setuptools import setup
NAME = "Dtls"
VERSION = "1.2.2"
VERSION = "1.2.3"
if __name__ == "__main__":
# Full upload sequence for new version: