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 versionincoming
parent
80d05b7d82
commit
7cda052bac
|
@ -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>
|
2017-04-10 Ray Brown <code@liquibits.com>
|
||||||
|
|
||||||
Release 1.2.2
|
Release 1.2.2
|
||||||
|
|
|
@ -32,7 +32,7 @@ sockets.
|
||||||
wrap_socket's parameters and their semantics have been maintained.
|
wrap_socket's parameters and their semantics have been maintained.
|
||||||
"""
|
"""
|
||||||
|
|
||||||
VERSION = 1, 2, 2
|
VERSION = 1, 2, 3
|
||||||
|
|
||||||
def _prep_bins():
|
def _prep_bins():
|
||||||
"""
|
"""
|
||||||
|
|
2
setup.py
2
setup.py
|
@ -29,7 +29,7 @@ from pickle import dump, load
|
||||||
from setuptools import setup
|
from setuptools import setup
|
||||||
|
|
||||||
NAME = "Dtls"
|
NAME = "Dtls"
|
||||||
VERSION = "1.2.2"
|
VERSION = "1.2.3"
|
||||||
|
|
||||||
if __name__ == "__main__":
|
if __name__ == "__main__":
|
||||||
# Full upload sequence for new version:
|
# Full upload sequence for new version:
|
||||||
|
|
Loading…
Reference in New Issue