Skip to content

Commit

Permalink
mbusd 0.5.1
Browse files Browse the repository at this point in the history
  • Loading branch information
3cky committed Aug 18, 2022
1 parent 874ce63 commit 4e5c7e3
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 3 deletions.
8 changes: 8 additions & 0 deletions 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).
Expand Down Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion 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 <nitr0@seti.kr.ua>
All rights reserved.

Expand Down
2 changes: 1 addition & 1 deletion 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
Expand Down
2 changes: 1 addition & 1 deletion src/main.c
Expand Up @@ -100,7 +100,7 @@ void
usage(char *exename)
{
cfg_init();
printf("%s-%s Copyright (C) 2002-2003, 2011, 2013-2021 Victor Antonovich <v.antonovich@gmail.com>, "
printf("%s-%s Copyright (C) 2002-2003, 2011, 2013-2022 Victor Antonovich <v.antonovich@gmail.com>, "
"Andrew Denysenko <nitr0@seti.kr.ua>\n\n"
"Usage: %s [-h] [-d] "
#ifdef LOG
Expand Down

0 comments on commit 4e5c7e3

Please sign in to comment.