Skip to content

Commit 4e5c7e3

Browse files
committed
mbusd 0.5.1
1 parent 874ce63 commit 4e5c7e3

File tree

4 files changed

+11
-3
lines changed

4 files changed

+11
-3
lines changed

CHANGELOG.md

+8
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# Changelog
22

3+
## [0.5.1] - 2022-08-18
4+
- Add 'reply on broadcast' feature (#75).
5+
- Fix for "Resource temporarily unavailable" error in tty read() (#78).
6+
- Add simple Dockerfile for running mbusd containerized (#79).
7+
- Add support for more complex serial port device names (#81).
8+
- Do not segfault when closing last connection (#83).
9+
- Fix crash due to missing logw() argument (#84).
310
## [0.5.0] - 2020-11-28
411
### Added
512
- Command-line and config options to set an TCP socket address (#53).
@@ -73,6 +80,7 @@
7380
## 0.1.1 - 2003-09-13
7481
### Initial release
7582

83+
[0.5.1]: https://github.com/3cky/mbusd/compare/v0.5.0...v0.5.1
7684
[0.5.0]: https://github.com/3cky/mbusd/compare/v0.4.0...v0.5.0
7785
[0.4.0]: https://github.com/3cky/mbusd/compare/v0.3.0...v0.4.0
7886
[0.3.0]: https://github.com/3cky/mbusd/compare/v0.2.3...v0.3.0

LICENSE

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Copyright (c) 2002-2003, 2013-2021 Victor Antonovich ([email protected])
1+
Copyright (c) 2002-2003, 2013-2022 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 "28 Nov 2020" "mbusd @PROJECT_VERSION@"
1+
.TH "mbusd" 8 "18 Aug 2022" "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-2021 Victor Antonovich <[email protected]>, "
103+
printf("%s-%s Copyright (C) 2002-2003, 2011, 2013-2022 Victor Antonovich <[email protected]>, "
104104
"Andrew Denysenko <[email protected]>\n\n"
105105
"Usage: %s [-h] [-d] "
106106
#ifdef LOG

0 commit comments

Comments
 (0)