From 7cda052bacfa63ff2bbe1f450986101e2d3e76e6 Mon Sep 17 00:00:00 2001 From: Ray Date: Thu, 27 Apr 2017 13:53:12 -0700 Subject: [PATCH] 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 --- ChangeLog | 8 ++++++++ dtls/__init__.py | 2 +- setup.py | 2 +- 3 files changed, 10 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index 1f9cf30..4b9c9ad 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,11 @@ +2017-04-27 Ray Brown + + 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 Release 1.2.2 diff --git a/dtls/__init__.py b/dtls/__init__.py index 7ea8c6e..8b122cd 100644 --- a/dtls/__init__.py +++ b/dtls/__init__.py @@ -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(): """ diff --git a/setup.py b/setup.py index aaa4a7e..cd5f035 100644 --- a/setup.py +++ b/setup.py @@ -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: