From 206c5420e1ca6e43b29734afc9ee64fdd8e1d0d4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andreas=20M=C3=BCller?= Date: Fri, 31 May 2024 16:59:30 +0200 Subject: [PATCH] Bump to v0.3.0 --- .../AMWD.Protocols.Modbus.Tests.csproj | 6 +++++- CHANGELOG.md | 18 ++++++++++++------ README.md | 2 +- 3 files changed, 18 insertions(+), 8 deletions(-) diff --git a/AMWD.Protocols.Modbus.Tests/AMWD.Protocols.Modbus.Tests.csproj b/AMWD.Protocols.Modbus.Tests/AMWD.Protocols.Modbus.Tests.csproj index 43c92a4..160a37a 100644 --- a/AMWD.Protocols.Modbus.Tests/AMWD.Protocols.Modbus.Tests.csproj +++ b/AMWD.Protocols.Modbus.Tests/AMWD.Protocols.Modbus.Tests.csproj @@ -13,7 +13,11 @@ - + + all + runtime; build; native; contentfiles; analyzers; buildtransitive + + all runtime; build; native; contentfiles; analyzers; buildtransitive diff --git a/CHANGELOG.md b/CHANGELOG.md index 9d74432..732acc6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,23 +7,28 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +_no changes_ + + +## [v0.3.0] (2024-05-31) + ### Added -- New `AMWD.Protocols.Modbus.Proxy` package, that contains the server implementations as proxies. +- New `AMWD.Protocols.Modbus.Proxy` package, that contains the server implementations as proxies ### Changed -- Renamed `ModbusSerialServer` to `ModbusRtuServer` to clearify the protocol that is used. -- Made `Protocol` property of `ModbusClientBase` non-abstract. +- Renamed `ModbusSerialServer` to `ModbusRtuServer` to clearify the protocol that is used +- Made `Protocol` property of `ModbusClientBase` non-abstract ### Fixed -- Issue with missing client on TCP connection when using default constructor (`AddressFamily.Unknown`) +- Issue with missing client on TCP connection when using default constructor (seems that `AddressFamily.Unknown` caused the problem) ## [v0.2.0] (2024-04-02) -First "final" re-implementation. +First "final" re-implementation ## v0.1.0 (2022-08-28) @@ -33,5 +38,6 @@ So this tag is only here for documentation purposes of the NuGet Gallery. -[Unreleased]: https://github.com/AM-WD/AMWD.Protocols.Modbus/compare/v0.2.0...HEAD +[Unreleased]: https://github.com/AM-WD/AMWD.Protocols.Modbus/compare/v0.3.0...HEAD +[v0.3.0]: https://github.com/AM-WD/AMWD.Protocols.Modbus/compare/v0.2.0...v0.3.0 [v0.2.0]: https://github.com/AM-WD/AMWD.Protocols.Modbus/tree/v0.2.0 diff --git a/README.md b/README.md index 2e151cd..1fe5852 100644 --- a/README.md +++ b/README.md @@ -4,7 +4,7 @@ Here you can find a basic implementation of the Modbus protocol. ## Overview -The project is divided into three parts. +The project is divided into four parts. To be mentioned at the beginning: Only the clients are build very modular to fit any requirement reached on the first implementation back in 2018 ([see here]).