Skip to content

Commit caec364

Browse files
committed
mbusd 0.4.0
1 parent c582e6f commit caec364

File tree

5 files changed

+15
-4
lines changed

5 files changed

+15
-4
lines changed

CHANGELOG.md

+11
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,15 @@
11
# Change Log
22

3+
## [0.4.0] - 2019-07-08
4+
### Added
5+
- Modbus RTU Exception Forwarding (#29).
6+
- Handle incorrect Modbus/TCP data length header field (#31).
7+
- tty reconnect with an exponential backoff.
8+
9+
### Fixed
10+
- Modbus: read only a single frame at a time (#43).
11+
- Readable socket never gets read, conn_loop degrades into busy loop (#52).
12+
313
## [0.3.0] - 2017-12-11
414
### Added
515
- Support for reading configuration from file (-c).
@@ -51,6 +61,7 @@
5161
## 0.1.1 - 2003-09-13
5262
### Initial release
5363

64+
[0.4.0]: https://github.com/3cky/mbusd/compare/v0.3.0...v0.4.0
5465
[0.3.0]: https://github.com/3cky/mbusd/compare/v0.2.3...v0.3.0
5566
[0.2.3]: https://github.com/3cky/mbusd/compare/v0.2.2...v0.2.3
5667
[0.2.2]: https://github.com/3cky/mbusd/compare/v0.2.1...v0.2.2

CMakeLists.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
cmake_minimum_required(VERSION 3.2)
22

3-
project(mbusd VERSION 0.3.1)
3+
project(mbusd VERSION 0.4.0)
44

55
list(APPEND CMAKE_MODULE_PATH ${CMAKE_CURRENT_SOURCE_DIR}/cmake/extern_GPL)
66
include(CheckFunctionExists)

LICENSE

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Copyright (c) 2002-2003, 2013-2017 Victor Antonovich ([email protected])
1+
Copyright (c) 2002-2003, 2013-2019 Victor Antonovich ([email protected])
22
Copyright (c) 2011 Andrew Denysenko <[email protected]>
33
All rights reserved.
44

doc/mbusd.8.in

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
.TH "mbusd" 8 "11 Dec 2017" "mbusd @PROJECT_VERSION@"
1+
.TH "mbusd" 8 "8 Jul 2019" "mbusd @PROJECT_VERSION@"
22
.SH NAME
33
mbusd \- MODBUS/TCP to MODBUS/RTU gateway.
44
.SH SYNOPSIS

src/main.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ void
100100
usage(char *exename)
101101
{
102102
cfg_init();
103-
printf("%s-%s Copyright (C) 2002-2003, 2011, 2013-2017 Victor Antonovich <[email protected]>, "
103+
printf("%s-%s Copyright (C) 2002-2003, 2011, 2013-2019 Victor Antonovich <[email protected]>, "
104104
"Andrew Denysenko <[email protected]>\n\n"
105105
"Usage: %s [-h] [-d] "
106106
#ifdef LOG

0 commit comments

Comments
 (0)