From aece74341417effb3c46a6a74a920fccaf00adcd Mon Sep 17 00:00:00 2001 From: Christian Meusel Date: Wed, 26 Jun 2024 23:52:10 +0200 Subject: [PATCH] Version 4.4.0 We've added new trait implementations for configuration parameter types which makes this release a minor step. --- CHANGELOG.md | 15 ++++++++++++--- Cargo.toml | 2 +- 2 files changed, 13 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 2607aa97..ae086834 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,13 +6,23 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/) and this project adheres to [Semantic Versioning](https://semver.org/). ## [Unreleased] +### Added +### Changed +### Fixed +### Removed + + +## [4.4.0] - 2024-06-26 + ### Added * 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 * Fix a bug where `available_ports()` returned disabled devices on Windows. [#144](https://github.com/serialport/serialport-rs/pull/144) @@ -29,8 +39,6 @@ project adheres to [Semantic Versioning](https://semver.org/). [#186](https://github.com/serialport/serialport-rs/pull/186) -### Removed - ## [4.3.0] - 2023-12-11 ### Changed @@ -396,7 +404,8 @@ Unreleased, happened due to a user error using `cargo-release`. * Initial release. -[Unreleased]: https://github.com/serialport/serialport-rs/compare/v4.3.0...HEAD +[Unreleased]: https://github.com/serialport/serialport-rs/compare/v4.4.0...HEAD +[4.4.0]: https://github.com/serialport/serialport-rs/compare/v4.3.0...v4.4.0 [4.3.0]: https://github.com/serialport/serialport-rs/compare/v4.2.2...v4.3.0 [4.2.2]: https://github.com/serialport/serialport-rs/compare/v4.2.1...v4.2.2 [4.2.1]: https://github.com/serialport/serialport-rs/compare/v4.2.0...v4.2.1 diff --git a/Cargo.toml b/Cargo.toml index 0fdb568e..56f8e942 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "serialport" -version = "4.3.1-alpha.0" +version = "4.4.0" authors = [ "Bryant Mairs ", "Jesse Braham ",