Skip to content

Commit a5546a0

Browse files
committed
Update changelog.md
1 parent f4c13b5 commit a5546a0

File tree

4 files changed

+45
-44
lines changed

4 files changed

+45
-44
lines changed

changelog.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -193,4 +193,5 @@ List of changes of new v0.4 version of ModbusTools:
193193
* Add Enable/Disable functionality for DataViews
194194
* Update `ModbusLib` subproject
195195
* Update docs
196+
* Fix `ModbusLib` subproject inner connection error for TCP client on Windows
196197

src/core/sdk/mbcore_config.h

Lines changed: 19 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,19 @@
1-
#ifndef MBCORE_CONFIG_H
2-
#define MBCORE_CONFIG_H
3-
4-
/*
5-
Major part of mbtools version
6-
*/
7-
#define MBTOOLS_VERSION_MAJOR 0
8-
9-
/*
10-
Minor part of mbtools version
11-
*/
12-
#define MBTOOLS_VERSION_MINOR 4
13-
14-
/*
15-
Patch part of mbtools version
16-
*/
17-
#define MBTOOLS_VERSION_PATCH 7
18-
19-
#endif // MBCORE_CONFIG_H
1+
#ifndef MBCORE_CONFIG_H
2+
#define MBCORE_CONFIG_H
3+
4+
/*
5+
Major part of mbtools version
6+
*/
7+
#define MBTOOLS_VERSION_MAJOR 0
8+
9+
/*
10+
Minor part of mbtools version
11+
*/
12+
#define MBTOOLS_VERSION_MINOR 4
13+
14+
/*
15+
Patch part of mbtools version
16+
*/
17+
#define MBTOOLS_VERSION_PATCH 7
18+
19+
#endif // MBCORE_CONFIG_H

src/server/python/mbconfig.py

Lines changed: 24 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,24 @@
1-
# -----------------------------------------------------------------------------
2-
# mbconfig.py
3-
#
4-
# DO NOT EDIT THIS FILE! It is autogenerated.
5-
#
6-
# This is Python module for ModbusTools server configuration.
7-
# It is intended to be converted into a usable Python module
8-
# containing configuration parameters and logic for the Modbus server.
9-
# -----------------------------------------------------------------------------
10-
11-
# Major part of mbtools version
12-
MBTOOLS_VERSION_MAJOR = 0
13-
14-
# Minor part of mbtools version
15-
MBTOOLS_VERSION_MINOR = 4
16-
17-
# Patch part of mbtools version
18-
MBTOOLS_VERSION_PATCH = 7
19-
20-
# Integer representation of mbtools version
21-
MBTOOLS_VERSION_INT = (0 << 16) | (4 << 8) | 7
22-
23-
# String representation of mbtools version
24-
MBTOOLS_VERSION_STR = "0.4.7"
1+
# -----------------------------------------------------------------------------
2+
# mbconfig.py
3+
#
4+
# DO NOT EDIT THIS FILE! It is autogenerated.
5+
#
6+
# This is Python module for ModbusTools server configuration.
7+
# It is intended to be converted into a usable Python module
8+
# containing configuration parameters and logic for the Modbus server.
9+
# -----------------------------------------------------------------------------
10+
11+
# Major part of mbtools version
12+
MBTOOLS_VERSION_MAJOR = 0
13+
14+
# Minor part of mbtools version
15+
MBTOOLS_VERSION_MINOR = 4
16+
17+
# Patch part of mbtools version
18+
MBTOOLS_VERSION_PATCH = 7
19+
20+
# Integer representation of mbtools version
21+
MBTOOLS_VERSION_INT = (0 << 16) | (4 << 8) | 7
22+
23+
# String representation of mbtools version
24+
MBTOOLS_VERSION_STR = "0.4.7"

0 commit comments

Comments
 (0)