Skip to content

Commit 91f8e35

Browse files
committed
mbusd 0.5.2
1 parent 0cf2cb0 commit 91f8e35

File tree

4 files changed

+12
-3
lines changed

4 files changed

+12
-3
lines changed

CHANGELOG.md

+9
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# Changelog
22

3+
## [0.5.2] - 2024-03-27
4+
- Make use of Linux RS-485 support (#97).
5+
- Add flag `-r` to support inverted RTS flow control(#98).
6+
- Logging fixes and enhancements (#90).
7+
- Default log file name changed to `/var/log/mbusd.log`.
8+
- Fix building on older gcc versions (#100).
9+
- Add docker image publish github workflow.
10+
311
## [0.5.1] - 2022-08-18
412
- Add 'reply on broadcast' feature (#75).
513
- Fix for "Resource temporarily unavailable" error in tty read() (#78).
@@ -80,6 +88,7 @@
8088
## 0.1.1 - 2003-09-13
8189
### Initial release
8290

91+
[0.5.2]: https://github.com/3cky/mbusd/compare/v0.5.1...v0.5.2
8392
[0.5.1]: https://github.com/3cky/mbusd/compare/v0.5.0...v0.5.1
8493
[0.5.0]: https://github.com/3cky/mbusd/compare/v0.4.0...v0.5.0
8594
[0.4.0]: https://github.com/3cky/mbusd/compare/v0.3.0...v0.4.0

LICENSE

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Copyright (c) 2002-2003, 2013-2023 Victor Antonovich ([email protected])
1+
Copyright (c) 2002-2003, 2013-2024 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 "18 Aug 2022" "mbusd @PROJECT_VERSION@"
1+
.TH "mbusd" 8 "27 Mar 2024" "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
@@ -101,7 +101,7 @@ void
101101
usage(char *exename)
102102
{
103103
cfg_init();
104-
printf("%s-%s Copyright (C) 2002-2003, 2011, 2013-2023 Victor Antonovich <[email protected]>, "
104+
printf("%s-%s Copyright (C) 2002-2003, 2011, 2013-2024 Victor Antonovich <[email protected]>, "
105105
"Andrew Denysenko <[email protected]>\n\n"
106106
"Usage: %s [-h] [-d] "
107107
#ifdef LOG

0 commit comments

Comments
 (0)