Skip to content

Commit 432b7a1

Browse files
committed
mbusd 0.5.0
1 parent 252aa45 commit 432b7a1

File tree

5 files changed

+20
-6
lines changed

5 files changed

+20
-6
lines changed

CHANGELOG.md

+16-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,16 @@
1-
# Change Log
1+
# Changelog
2+
3+
## [0.5.0] - 2020-11-28
4+
### Added
5+
- Command-line and config options to set an TCP socket address (#53).
6+
- IPv6 support (#53).
7+
- Support for RTU broadcast messages (#61).
8+
- More baudrates (#62).
9+
10+
### Fixed
11+
- Added online network requirements to the systemd service file (#58).
12+
- Take into account tty parity bit in the timing calculations (#59).
13+
- Show an error when trying to use unsupported baudrate (#63).
214

315
## [0.4.0] - 2019-07-08
416
### Added
@@ -61,7 +73,9 @@
6173
## 0.1.1 - 2003-09-13
6274
### Initial release
6375

76+
[0.5.0]: https://github.com/3cky/mbusd/compare/v0.4.0...v0.5.0
6477
[0.4.0]: https://github.com/3cky/mbusd/compare/v0.3.0...v0.4.0
6578
[0.3.0]: https://github.com/3cky/mbusd/compare/v0.2.3...v0.3.0
6679
[0.2.3]: https://github.com/3cky/mbusd/compare/v0.2.2...v0.2.3
67-
[0.2.2]: https://github.com/3cky/mbusd/compare/v0.2.1...v0.2.2
80+
[0.2.2]: https://github.com/3cky/mbusd/compare/v0.2.1...v0.2.2
81+

CMakeLists.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
cmake_minimum_required(VERSION 3.2)
22

3-
project(mbusd VERSION 0.4.1)
3+
project(mbusd VERSION 0.5.0)
44

55
list(APPEND CMAKE_MODULE_PATH ${CMAKE_CURRENT_SOURCE_DIR}/cmake/extern_GPL)
66
include(CheckFunctionExists)

LICENSE

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

0 commit comments

Comments
 (0)