diff --git a/CHANGELOG.md b/CHANGELOG.md index b6e525d..634768c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [0.32.3] - 2023-10-19 +### Fixed +- Allow a value of 0ms for `set_latency_timer`. + ## [0.32.2] - 2022-12-14 ### Fixed - 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 ## Prior releases A changelog was not kept for prior releases. -[Unreleased]: https://github.com/ftdi-rs/libftd2xx/compare/0.32.2...HEAD +[Unreleased]: https://github.com/ftdi-rs/libftd2xx/compare/0.32.3...HEAD +[0.32.3]: https://github.com/ftdi-rs/libftd2xx/compare/0.32.2...0.32.3 [0.32.2]: https://github.com/ftdi-rs/libftd2xx/compare/0.32.1...0.32.2 [0.32.1]: https://github.com/ftdi-rs/libftd2xx/compare/0.32.0...0.32.1 [0.32.0]: https://github.com/ftdi-rs/libftd2xx/compare/0.31.0...0.32.0 diff --git a/Cargo.toml b/Cargo.toml index 4c71896..33c6f13 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "libftd2xx" -version = "0.32.2" +version = "0.32.3" authors = ["Alex Martens "] edition = "2021" description = "Rust safe wrapper around the libftd2xx-ffi crate." diff --git a/README.md b/README.md index b1690ec..bf8141a 100644 --- a/README.md +++ b/README.md @@ -14,7 +14,7 @@ Simply add this crate as a dependency in your `Cargo.toml`. ```toml [dependencies.libftd2xx] -version = "0.32.2" +version = "0.32.3" # statically link the vendor library, defaults to dynamic if not set # this will make things "just work" on Linux and Windows features = ["static"] diff --git a/src/lib.rs b/src/lib.rs index 7c2e64d..cd2dd3a 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -8,7 +8,7 @@ //! //! ```toml //! [dependencies.libftd2xx] -//! version = "0.32.2" +//! version = "0.32.3" //! # statically link the vendor library, defaults to dynamic if not set //! # this will make things "just work" on Linux and Windows //! features = ["static"]