From 91f8e35eae45feee32f74a3201a772f863d14aca Mon Sep 17 00:00:00 2001 From: Victor Antonovich Date: Wed, 27 Mar 2024 18:44:59 +0300 Subject: [PATCH] mbusd 0.5.2 --- CHANGELOG.md | 9 +++++++++ LICENSE | 2 +- doc/mbusd.8.in | 2 +- src/main.c | 2 +- 4 files changed, 12 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b55cdb4..9cca760 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## [0.5.2] - 2024-03-27 +- Make use of Linux RS-485 support (#97). +- Add flag `-r` to support inverted RTS flow control(#98). +- Logging fixes and enhancements (#90). +- Default log file name changed to `/var/log/mbusd.log`. +- Fix building on older gcc versions (#100). +- Add docker image publish github workflow. + ## [0.5.1] - 2022-08-18 - Add 'reply on broadcast' feature (#75). - Fix for "Resource temporarily unavailable" error in tty read() (#78). @@ -80,6 +88,7 @@ ## 0.1.1 - 2003-09-13 ### Initial release +[0.5.2]: https://github.com/3cky/mbusd/compare/v0.5.1...v0.5.2 [0.5.1]: https://github.com/3cky/mbusd/compare/v0.5.0...v0.5.1 [0.5.0]: https://github.com/3cky/mbusd/compare/v0.4.0...v0.5.0 [0.4.0]: https://github.com/3cky/mbusd/compare/v0.3.0...v0.4.0 diff --git a/LICENSE b/LICENSE index 1b52725..e27bc93 100644 --- a/LICENSE +++ b/LICENSE @@ -1,4 +1,4 @@ -Copyright (c) 2002-2003, 2013-2023 Victor Antonovich (v.antonovich@gmail.com) +Copyright (c) 2002-2003, 2013-2024 Victor Antonovich (v.antonovich@gmail.com) Copyright (c) 2011 Andrew Denysenko All rights reserved. diff --git a/doc/mbusd.8.in b/doc/mbusd.8.in index 42c3b9b..4c75dd2 100644 --- a/doc/mbusd.8.in +++ b/doc/mbusd.8.in @@ -1,4 +1,4 @@ -.TH "mbusd" 8 "18 Aug 2022" "mbusd @PROJECT_VERSION@" +.TH "mbusd" 8 "27 Mar 2024" "mbusd @PROJECT_VERSION@" .SH NAME mbusd \- MODBUS/TCP to MODBUS/RTU gateway. .SH SYNOPSIS diff --git a/src/main.c b/src/main.c index a833be2..630b0fa 100644 --- a/src/main.c +++ b/src/main.c @@ -101,7 +101,7 @@ void usage(char *exename) { cfg_init(); - printf("%s-%s Copyright (C) 2002-2003, 2011, 2013-2023 Victor Antonovich , " + printf("%s-%s Copyright (C) 2002-2003, 2011, 2013-2024 Victor Antonovich , " "Andrew Denysenko \n\n" "Usage: %s [-h] [-d] " #ifdef LOG