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

version: 0.32.3 -> 0.32.4 #75

Merged
merged 1 commit into from
Mar 5, 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
7 changes: 6 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.4] - 2024-03-04
### Added
- Added EEPROM implementations for the 232R.

## [0.32.3] - 2023-10-19
### Fixed
- Allow a value of 0ms for `set_latency_timer`.
Expand Down Expand Up @@ -152,7 +156,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.3...HEAD
[Unreleased]: https://github.com/ftdi-rs/libftd2xx/compare/0.32.4...HEAD
[0.32.4]: https://github.com/ftdi-rs/libftd2xx/compare/0.32.3...0.32.4
[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
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 = "libftd2xx"
version = "0.32.3"
version = "0.32.4"
authors = ["Alex Martens <alex@thinglab.org>"]
edition = "2021"
description = "Rust safe wrapper around the libftd2xx-ffi crate."
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ Simply add this crate as a dependency in your `Cargo.toml`.

```toml
[dependencies.libftd2xx]
version = "0.32.3"
version = "0.32.4"
# statically link the vendor library, defaults to dynamic if not set
# this will make things "just work" on Linux and Windows
features = ["static"]
Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
//!
//! ```toml
//! [dependencies.libftd2xx]
//! version = "0.32.3"
//! version = "0.32.4"
//! # statically link the vendor library, defaults to dynamic if not set
//! # this will make things "just work" on Linux and Windows
//! features = ["static"]
Expand Down