Bump to v0.3.0

This commit is contained in:
2024-05-31 16:59:30 +02:00
parent d027b6939a
commit 206c5420e1
3 changed files with 18 additions and 8 deletions

View File

@@ -13,7 +13,11 @@
</PropertyGroup>
<ItemGroup>
<PackageReference Include="coverlet.msbuild" Version="6.0.1">
<PackageReference Include="coverlet.collector" Version="6.0.2">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="coverlet.msbuild" Version="6.0.2">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>

View File

@@ -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

View File

@@ -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]).