Skip to content

Commit 7c00dc6

Browse files
committed
release v0.1.8
1 parent 74935d2 commit 7c00dc6

File tree

3 files changed

+9
-4
lines changed

3 files changed

+9
-4
lines changed

CHANGES

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,13 @@
11
Revision history for pyModbusTCP
22

3+
0.1.8 2018-10-15
4+
5+
- fix ModbusServer: avoid hard coded TCP port (thanks to akobyl).
6+
- add stop() and is_run property to ModbusServer (thanks to Rugiewitz).
7+
38
0.1.7 2018-08-20
49

5-
- fix ModbusServer issue on Windows (thanks andreascian).
10+
- fix ModbusServer issue on Windows (thanks to andreascian).
611

712
0.1.6 2018-05-14
813

pyModbusTCP/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
# -*- coding: utf-8 -*-
22

33
# Python package: Client and Server for ModBus/TCP
4-
# Version: 0.1.7
4+
# Version: 0.1.8
55
# Website: https://github.com/sourceperl/pyModbusTCP
6-
# Date: 2018-08-20
6+
# Date: 2018-10-15
77
# License: MIT (http://http://opensource.org/licenses/mit-license.php)
88
# Description: Client/Server ModBus/TCP
99
# Support functions 3 and 16 (class 0)

pyModbusTCP/constants.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# -*- coding: utf-8 -*-
22

3-
VERSION = '0.1.7'
3+
VERSION = '0.1.8'
44
## ModBus/TCP
55
MODBUS_PORT = 502
66
## Modbus mode

0 commit comments

Comments
 (0)