Skip to content

Commit 489f779

Browse files
committed
version: 0.32.2 -> 0.32.3
1 parent a730261 commit 489f779

File tree

4 files changed

+9
-4
lines changed

4 files changed

+9
-4
lines changed

CHANGELOG.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,10 @@ 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+
## [0.32.3] - 2023-10-19
8+
### Fixed
9+
- Allow a value of 0ms for `set_latency_timer`.
10+
711
## [0.32.2] - 2022-12-14
812
### Fixed
913
- Fixed a typo where EEPROM drive-current sets schmitt input instead.
@@ -148,7 +152,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
148152
## Prior releases
149153
A changelog was not kept for prior releases.
150154

151-
[Unreleased]: https://github.com/ftdi-rs/libftd2xx/compare/0.32.2...HEAD
155+
[Unreleased]: https://github.com/ftdi-rs/libftd2xx/compare/0.32.3...HEAD
156+
[0.32.3]: https://github.com/ftdi-rs/libftd2xx/compare/0.32.2...0.32.3
152157
[0.32.2]: https://github.com/ftdi-rs/libftd2xx/compare/0.32.1...0.32.2
153158
[0.32.1]: https://github.com/ftdi-rs/libftd2xx/compare/0.32.0...0.32.1
154159
[0.32.0]: https://github.com/ftdi-rs/libftd2xx/compare/0.31.0...0.32.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 = "libftd2xx"
3-
version = "0.32.2"
3+
version = "0.32.3"
44
authors = ["Alex Martens <[email protected]>"]
55
edition = "2021"
66
description = "Rust safe wrapper around the libftd2xx-ffi crate."

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ Simply add this crate as a dependency in your `Cargo.toml`.
1414

1515
```toml
1616
[dependencies.libftd2xx]
17-
version = "0.32.2"
17+
version = "0.32.3"
1818
# statically link the vendor library, defaults to dynamic if not set
1919
# this will make things "just work" on Linux and Windows
2020
features = ["static"]

src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
//!
99
//! ```toml
1010
//! [dependencies.libftd2xx]
11-
//! version = "0.32.2"
11+
//! version = "0.32.3"
1212
//! # statically link the vendor library, defaults to dynamic if not set
1313
//! # this will make things "just work" on Linux and Windows
1414
//! features = ["static"]

0 commit comments

Comments
 (0)