Skip to content

Commit d6f5a1d

Browse files
committed
version: 0.23.2 -> 0.24.0
1 parent 959d51a commit d6f5a1d

File tree

4 files changed

+15
-6
lines changed

4 files changed

+15
-6
lines changed

CHANGELOG.md

Lines changed: 12 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,17 @@ All notable changes to this project will be documented in this file.
44
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
55
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66

7-
## [Unreleased]
7+
## [0.24.0] - 2026-01-03
88
### Changed
9-
- Chip select is deasserted on SPI bus initialization.
9+
- Chip select is deasserted on SPI bus initialization by [@michaelwu] in [#74].
10+
11+
### Fixed
12+
- Fix `SpiBus` for use with `Polarity::IdleHigh` by [@andreasWallner] in [#76].
13+
14+
[@michaelwu]: https://github.com/michaelwu
15+
[@andreasWallner]: https://github.com/andreasWallner
16+
[#74]: https://github.com/ftdi-rs/ftdi-embedded-hal/pull/74
17+
[#76]: https://github.com/ftdi-rs/ftdi-embedded-hal/pull/76
1018

1119
## [0.23.2] - 2025-06-01
1220
### Fixed
@@ -202,7 +210,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
202210
## [0.1.0] - 2020-09-12
203211
- Initial release
204212

205-
[Unreleased]: https://github.com/ftdi-rs/ftdi-embedded-hal/compare/v0.23.2...HEAD
213+
[Unreleased]: https://github.com/ftdi-rs/ftdi-embedded-hal/compare/v0.24.0...HEAD
214+
[0.24.0]: https://github.com/ftdi-rs/ftdi-embedded-hal/compare/v0.23.2...v0.24.0
206215
[0.23.2]: https://github.com/ftdi-rs/ftdi-embedded-hal/compare/v0.23.1...v0.23.2
207216
[0.23.1]: https://github.com/ftdi-rs/ftdi-embedded-hal/compare/v0.23.0...v0.23.1
208217
[0.23.0]: https://github.com/ftdi-rs/ftdi-embedded-hal/compare/v0.22.1...v0.23.0

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "ftdi-embedded-hal"
3-
version = "0.23.2"
3+
version = "0.24.0"
44
authors = ["Alex Martens <alex@thinglab.org>"]
55
description = "embedded-hal implementation for FTDI USB devices."
66
keywords = ["ftdi", "usb", "io", "hal"]

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ FTDI device into the [embedded-hal] traits.
2424

2525
```toml
2626
[dependencies.ftdi-embedded-hal]
27-
version = "0.23.2"
27+
version = "0.24.0"
2828
features = ["libftd2xx", "libftd2xx-static"]
2929
```
3030

src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
//!
1919
//! ```toml
2020
//! [dependencies.ftdi-embedded-hal]
21-
//! version = "0.23.2"
21+
//! version = "0.24.0"
2222
//! features = ["libftd2xx", "libftd2xx-static"]
2323
//! ```
2424
//!

0 commit comments

Comments
 (0)