From d2f31181aa2352512cc8548987b39ced6215e24b Mon Sep 17 00:00:00 2001 From: Christian Meusel Date: Wed, 26 Jun 2024 23:44:35 +0200 Subject: [PATCH] Add missing changelog entries --- CHANGELOG.md | 20 ++++++++++++++++---- 1 file changed, 16 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index bdc8e453..2607aa97 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,15 +7,27 @@ project adheres to [Semantic Versioning](https://semver.org/). ## [Unreleased] ### Added -* Added conversions between `DataBits`, `StopBits` types and their numeric representations -* Added `FromStr` implementation for `FlowControl` +* Add conversions between `DataBits`, `StopBits` types and their numeric + representations. +* Add `FromStr` implementation for `FlowControl`. + [#163](https://github.com/serialport/serialport-rs/pull/163) ### Changed +* Several changes for CI hygiene. ### Fixed -* Fixes a bug where `available_ports()` returned disabled devices on Windows. +* Fix a bug where `available_ports()` returned disabled devices on Windows. [#144](https://github.com/serialport/serialport-rs/pull/144) -* Fixes a bug on Windows where the `WriteTotalTimeoutConstant` field hasn't been +* Fix a bug on Windows where the `WriteTotalTimeoutConstant` field hasn't been configured properly when the `set_timeout` method is called. [#124](https://github.com/serialport/serialport-rs/issues/124) +* Fix a longstanding bug on Windows where timeouts of length zero + (`Duration::ZERO`) actually resulted in waiting indefinitely. + [#79](https://github.com/serialport/serialport-rs/pull/79) +* Fix missing modem ports from `available_ports()` on Windows. + [#81](https://github.com/serialport/serialport-rs/issues/81) + [#84](https://github.com/serialport/serialport-rs/pull/84) +* Fix MSRV incompatibility with sub-dependency of clap. + [#186](https://github.com/serialport/serialport-rs/pull/186) + ### Removed