diff --git a/CHANGELOG.md b/CHANGELOG.md index 7ac07b6..b55cdb4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [0.5.1] - 2022-08-18 +- Add 'reply on broadcast' feature (#75). +- Fix for "Resource temporarily unavailable" error in tty read() (#78). +- Add simple Dockerfile for running mbusd containerized (#79). +- Add support for more complex serial port device names (#81). +- Do not segfault when closing last connection (#83). +- Fix crash due to missing logw() argument (#84). ## [0.5.0] - 2020-11-28 ### Added - Command-line and config options to set an TCP socket address (#53). @@ -73,6 +80,7 @@ ## 0.1.1 - 2003-09-13 ### Initial release +[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 [0.3.0]: https://github.com/3cky/mbusd/compare/v0.2.3...v0.3.0 diff --git a/LICENSE b/LICENSE index 178b2c2..2df3efd 100644 --- a/LICENSE +++ b/LICENSE @@ -1,4 +1,4 @@ -Copyright (c) 2002-2003, 2013-2021 Victor Antonovich (v.antonovich@gmail.com) +Copyright (c) 2002-2003, 2013-2022 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 589d5bf..b1f9cc5 100644 --- a/doc/mbusd.8.in +++ b/doc/mbusd.8.in @@ -1,4 +1,4 @@ -.TH "mbusd" 8 "28 Nov 2020" "mbusd @PROJECT_VERSION@" +.TH "mbusd" 8 "18 Aug 2022" "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 b2594e1..c04f3b4 100644 --- a/src/main.c +++ b/src/main.c @@ -100,7 +100,7 @@ void usage(char *exename) { cfg_init(); - printf("%s-%s Copyright (C) 2002-2003, 2011, 2013-2021 Victor Antonovich , " + printf("%s-%s Copyright (C) 2002-2003, 2011, 2013-2022 Victor Antonovich , " "Andrew Denysenko \n\n" "Usage: %s [-h] [-d] " #ifdef LOG