Skip to content

Commit 4dbbaaf

Browse files
authored
version: 0.23.1 -> 0.23.2
1 parent 6675f86 commit 4dbbaaf

File tree

4 files changed

+12
-11
lines changed

4 files changed

+12
-11
lines changed

CHANGELOG.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ 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.23.2] - 2025-06-01
88
### Fixed
99
- Fixed SPI SCLK pin states for the `ClockData::MsbPosIn` and `ClockData::LsbPosIn` SPI modes.
1010

@@ -198,7 +198,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
198198
## [0.1.0] - 2020-09-12
199199
- Initial release
200200

201-
[Unreleased]: https://github.com/ftdi-rs/ftdi-embedded-hal/compare/v0.23.1...HEAD
201+
[Unreleased]: https://github.com/ftdi-rs/ftdi-embedded-hal/compare/v0.23.2...HEAD
202+
[0.23.2]: https://github.com/ftdi-rs/ftdi-embedded-hal/compare/v0.23.1...v0.23.2
202203
[0.23.1]: https://github.com/ftdi-rs/ftdi-embedded-hal/compare/v0.23.0...v0.23.1
203204
[0.23.0]: https://github.com/ftdi-rs/ftdi-embedded-hal/compare/v0.22.1...v0.23.0
204205
[0.22.1]: https://github.com/ftdi-rs/ftdi-embedded-hal/compare/v0.22.0...v0.22.1

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.1"
3+
version = "0.23.2"
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: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,12 @@
55
# ftdi-embedded-hal
66

77
This is an [embedded-hal] implementation for the FTDI chips
8-
that can use various drivers including [libftd2xx] and [ftdi-rs].
8+
that use the [libftd2xx] or [ftdi-rs] drivers.
99

1010
This enables development of embedded device drivers without the use of
11-
a microcontroller. The FTDI devices interface with PC via USB, and
11+
a microcontroller. The FTDI devices interface with a PC via USB, and
1212
provide a multi-protocol synchronous serial engine to interface
13-
with most GPIO, SPI, I2C embedded devices.
13+
with most GPIO, SPI, and I2C embedded devices.
1414

1515
**Note:**
1616
This is strictly a development tool.
@@ -24,7 +24,7 @@ FTDI device into the [embedded-hal] traits.
2424

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

src/lib.rs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
//! This is an [embedded-hal] implementation for the FTDI chips
2-
//! that can use various drivers including [libftd2xx] and [ftdi-rs].
2+
//! that use the [libftd2xx] or [ftdi-rs] drivers.
33
//!
44
//! This enables development of embedded device drivers without the use of
5-
//! a microcontroller. The FTDI devices interface with PC via USB, and
5+
//! a microcontroller. The FTDI devices interface with a PC via USB, and
66
//! provide a multi-protocol synchronous serial engine to interface
7-
//! with most GPIO, SPI, I2C embedded devices.
7+
//! with most GPIO, SPI, and I2C embedded devices.
88
//!
99
//! **Note:**
1010
//! This is strictly a development tool.
@@ -18,7 +18,7 @@
1818
//!
1919
//! ```toml
2020
//! [dependencies.ftdi-embedded-hal]
21-
//! version = "0.23.1"
21+
//! version = "0.23.2"
2222
//! features = ["libftd2xx", "libftd2xx-static"]
2323
//! ```
2424
//!

0 commit comments

Comments
 (0)