mirror of
https://github.com/3cky/mbusd.git
synced 2025-02-11 00:11:28 +01:00
mbusd 0.5.0
This commit is contained in:
parent
252aa45e5d
commit
432b7a1a8f
16
CHANGELOG.md
16
CHANGELOG.md
@ -1,4 +1,16 @@
|
||||
# Change Log
|
||||
# Changelog
|
||||
|
||||
## [0.5.0] - 2020-11-28
|
||||
### Added
|
||||
- Command-line and config options to set an TCP socket address (#53).
|
||||
- IPv6 support (#53).
|
||||
- Support for RTU broadcast messages (#61).
|
||||
- More baudrates (#62).
|
||||
|
||||
### Fixed
|
||||
- Added online network requirements to the systemd service file (#58).
|
||||
- Take into account tty parity bit in the timing calculations (#59).
|
||||
- Show an error when trying to use unsupported baudrate (#63).
|
||||
|
||||
## [0.4.0] - 2019-07-08
|
||||
### Added
|
||||
@ -61,7 +73,9 @@
|
||||
## 0.1.1 - 2003-09-13
|
||||
### Initial release
|
||||
|
||||
[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
|
||||
[0.2.3]: https://github.com/3cky/mbusd/compare/v0.2.2...v0.2.3
|
||||
[0.2.2]: https://github.com/3cky/mbusd/compare/v0.2.1...v0.2.2
|
||||
|
||||
|
@ -1,6 +1,6 @@
|
||||
cmake_minimum_required(VERSION 3.2)
|
||||
|
||||
project(mbusd VERSION 0.4.1)
|
||||
project(mbusd VERSION 0.5.0)
|
||||
|
||||
list(APPEND CMAKE_MODULE_PATH ${CMAKE_CURRENT_SOURCE_DIR}/cmake/extern_GPL)
|
||||
include(CheckFunctionExists)
|
||||
|
2
LICENSE
2
LICENSE
@ -1,4 +1,4 @@
|
||||
Copyright (c) 2002-2003, 2013-2019 Victor Antonovich (v.antonovich@gmail.com)
|
||||
Copyright (c) 2002-2003, 2013-2020 Victor Antonovich (v.antonovich@gmail.com)
|
||||
Copyright (c) 2011 Andrew Denysenko <nitr0@seti.kr.ua>
|
||||
All rights reserved.
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
.TH "mbusd" 8 "8 Jul 2019" "mbusd @PROJECT_VERSION@"
|
||||
.TH "mbusd" 8 "28 Nov 2020" "mbusd @PROJECT_VERSION@"
|
||||
.SH NAME
|
||||
mbusd \- MODBUS/TCP to MODBUS/RTU gateway.
|
||||
.SH SYNOPSIS
|
||||
|
@ -100,7 +100,7 @@ void
|
||||
usage(char *exename)
|
||||
{
|
||||
cfg_init();
|
||||
printf("%s-%s Copyright (C) 2002-2003, 2011, 2013-2019 Victor Antonovich <v.antonovich@gmail.com>, "
|
||||
printf("%s-%s Copyright (C) 2002-2003, 2011, 2013-2020 Victor Antonovich <v.antonovich@gmail.com>, "
|
||||
"Andrew Denysenko <nitr0@seti.kr.ua>\n\n"
|
||||
"Usage: %s [-h] [-d] "
|
||||
#ifdef LOG
|
||||
|
Loading…
Reference in New Issue
Block a user