Skip to content

Commit 2694010

Browse files
committed
version: 0.32.1 -> 0.32.2
1 parent d68fded commit 2694010

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.2] - 2022-12-14
8+
### Fixed
9+
- Fixed a typo where EEPROM drive-current sets schmitt input instead.
10+
711
## [0.32.1] - 2022-08-27
812
### Added
913
- Implement `Send` and `Sync` for `Ftdi`.
@@ -144,7 +148,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
144148
## Prior releases
145149
A changelog was not kept for prior releases.
146150

147-
[Unreleased]: https://github.com/ftdi-rs/libftd2xx/compare/0.32.1...HEAD
151+
[Unreleased]: https://github.com/ftdi-rs/libftd2xx/compare/0.32.2...HEAD
152+
[0.32.2]: https://github.com/ftdi-rs/libftd2xx/compare/0.32.1...0.32.2
148153
[0.32.1]: https://github.com/ftdi-rs/libftd2xx/compare/0.32.0...0.32.1
149154
[0.32.0]: https://github.com/ftdi-rs/libftd2xx/compare/0.31.0...0.32.0
150155
[0.31.0]: https://github.com/ftdi-rs/libftd2xx/compare/0.30.0...0.31.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.1"
3+
version = "0.32.2"
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.1"
17+
version = "0.32.2"
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.1"
11+
//! version = "0.32.2"
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)