Skip to content

Commit 1bd672e

Browse files
committed
Change version
1 parent a5546a0 commit 1bd672e

File tree

8 files changed

+61
-57
lines changed

8 files changed

+61
-57
lines changed

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
cmake_minimum_required(VERSION 3.13) # 2.2 - case insensitive syntax
22
# 3.13 included policy CMP0077
33

4-
project(ModbusTools VERSION 0.4.7 LANGUAGES CXX)
4+
project(ModbusTools VERSION 0.4.8 LANGUAGES CXX)
55

66
set(MBTOOLS_VERSION ${PROJECT_VERSION})
77
set(MBTOOLS_ROOT_DIR ${CMAKE_SOURCE_DIR})

changelog.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -195,3 +195,7 @@ List of changes of new v0.4 version of ModbusTools:
195195
* Update docs
196196
* Fix `ModbusLib` subproject inner connection error for TCP client on Windows
197197

198+
# 0.4.8
199+
200+
* Fixed bug within `ModbusLib` subproject when TCP client unable to connect on Windows
201+

src/client/win_resource.rc

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
IDI_ICON1 ICON DISCARDABLE "gui\\icons\\client.ico"
44

55
VS_VERSION_INFO VERSIONINFO
6-
FILEVERSION 0,4,7,0
7-
PRODUCTVERSION 0,4,7,0
6+
FILEVERSION 0,4,8,0
7+
PRODUCTVERSION 0,4,8,0
88
FILEFLAGSMASK 0x3fL
99
#ifdef _DEBUG
1010
FILEFLAGS VS_FF_DEBUG
@@ -21,11 +21,11 @@ VS_VERSION_INFO VERSIONINFO
2121
BEGIN
2222
VALUE "CompanyName", "\0"
2323
VALUE "FileDescription", "\0"
24-
VALUE "FileVersion", "0.4.7.0\0"
24+
VALUE "FileVersion", "0.4.8.0\0"
2525
VALUE "LegalCopyright", "\0"
2626
VALUE "OriginalFilename", "client.exe\0"
2727
VALUE "ProductName", "client\0"
28-
VALUE "ProductVersion", "0.4.7.0\0"
28+
VALUE "ProductVersion", "0.4.8.0\0"
2929
END
3030
END
3131
BLOCK "VarFileInfo"

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 8
18+
19+
#endif // MBCORE_CONFIG_H

src/core/win_resource.rc

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33

44

55
VS_VERSION_INFO VERSIONINFO
6-
FILEVERSION 0,4,7,0
7-
PRODUCTVERSION 0,4,7,0
6+
FILEVERSION 0,4,8,0
7+
PRODUCTVERSION 0,4,8,0
88
FILEFLAGSMASK 0x3fL
99
#ifdef _DEBUG
1010
FILEFLAGS VS_FF_DEBUG
@@ -21,11 +21,11 @@ VS_VERSION_INFO VERSIONINFO
2121
BEGIN
2222
VALUE "CompanyName", "\0"
2323
VALUE "FileDescription", "\0"
24-
VALUE "FileVersion", "0.4.7.0\0"
24+
VALUE "FileVersion", "0.4.8.0\0"
2525
VALUE "LegalCopyright", "\0"
2626
VALUE "OriginalFilename", "core.dll\0"
2727
VALUE "ProductName", "core\0"
28-
VALUE "ProductVersion", "0.4.7.0\0"
28+
VALUE "ProductVersion", "0.4.8.0\0"
2929
END
3030
END
3131
BLOCK "VarFileInfo"

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 = 8
19+
20+
# Integer representation of mbtools version
21+
MBTOOLS_VERSION_INT = (0 << 16) | (4 << 8) | 8
22+
23+
# String representation of mbtools version
24+
MBTOOLS_VERSION_STR = "0.4.8"

src/server/win_resource.rc

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
IDI_ICON1 ICON DISCARDABLE "gui\\icons\\server.ico"
44

55
VS_VERSION_INFO VERSIONINFO
6-
FILEVERSION 0,4,7,0
7-
PRODUCTVERSION 0,4,7,0
6+
FILEVERSION 0,4,8,0
7+
PRODUCTVERSION 0,4,8,0
88
FILEFLAGSMASK 0x3fL
99
#ifdef _DEBUG
1010
FILEFLAGS VS_FF_DEBUG
@@ -21,11 +21,11 @@ VS_VERSION_INFO VERSIONINFO
2121
BEGIN
2222
VALUE "CompanyName", "\0"
2323
VALUE "FileDescription", "\0"
24-
VALUE "FileVersion", "0.4.7.0\0"
24+
VALUE "FileVersion", "0.4.8.0\0"
2525
VALUE "LegalCopyright", "\0"
2626
VALUE "OriginalFilename", "server.exe\0"
2727
VALUE "ProductName", "server\0"
28-
VALUE "ProductVersion", "0.4.7.0\0"
28+
VALUE "ProductVersion", "0.4.8.0\0"
2929
END
3030
END
3131
BLOCK "VarFileInfo"

0 commit comments

Comments
 (0)