Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Prepare release 4.4.0 #198

Merged
merged 3 commits into from
Jun 27, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
33 changes: 27 additions & 6 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,17 +7,37 @@ 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`
### Changed
### Fixed
* Fixes a bug where `available_ports()` returned disabled devices on Windows.
### 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)
* 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

## [4.3.0] - 2023-12-11

Expand Down Expand Up @@ -384,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
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "serialport"
version = "4.3.1-alpha.0"
version = "4.4.1-alpha.0"
authors = [
"Bryant Mairs <[email protected]>",
"Jesse Braham <[email protected]>",
Expand Down
Loading