From 5b413c7d2c7cc45d61af10cf60fa2c4cb2d85ad7 Mon Sep 17 00:00:00 2001 From: sourceperl Date: Mon, 14 May 2018 13:25:49 +0200 Subject: [PATCH] release v0.1.6 --- CHANGES | 4 ++++ pyModbusTCP/__init__.py | 4 ++-- pyModbusTCP/constants.py | 2 +- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/CHANGES b/CHANGES index 1958d03..dd15b91 100644 --- a/CHANGES +++ b/CHANGES @@ -1,5 +1,9 @@ Revision history for pyModbusTCP +0.1.6 2018-05-14 + + - fix multiple TCP packets recv issue in ModbusClient and ModbusServer (thanks Farin94). + 0.1.5 2017-11-23 - add long_list_to_word to utils. diff --git a/pyModbusTCP/__init__.py b/pyModbusTCP/__init__.py index 39b57e5..659618b 100644 --- a/pyModbusTCP/__init__.py +++ b/pyModbusTCP/__init__.py @@ -1,9 +1,9 @@ # -*- coding: utf-8 -*- # Python package: Client and Server for ModBus/TCP -# Version: 0.1.5 +# Version: 0.1.6 # Website: https://github.com/sourceperl/pyModbusTCP -# Date: 2017-11-23 +# Date: 2018-05-14 # License: MIT (http://http://opensource.org/licenses/mit-license.php) # Description: Client/Server ModBus/TCP # Support functions 3 and 16 (class 0) diff --git a/pyModbusTCP/constants.py b/pyModbusTCP/constants.py index 12b61ba..53e7d4f 100644 --- a/pyModbusTCP/constants.py +++ b/pyModbusTCP/constants.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- -VERSION = '0.1.5' +VERSION = '0.1.6' ## ModBus/TCP MODBUS_PORT = 502 ## Modbus mode