Skip to content

Commit

Permalink
version: 0.32.1 -> 0.32.2
Browse files Browse the repository at this point in the history
  • Loading branch information
newAM committed Dec 14, 2022
1 parent d68fded commit 2694010
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 4 deletions.
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.2] - 2022-12-14
### Fixed
- Fixed a typo where EEPROM drive-current sets schmitt input instead.

## [0.32.1] - 2022-08-27
### Added
- Implement `Send` and `Sync` for `Ftdi`.
Expand Down Expand Up @@ -144,7 +148,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.1...HEAD
[Unreleased]: https://github.com/ftdi-rs/libftd2xx/compare/0.32.2...HEAD
[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
[0.31.0]: https://github.com/ftdi-rs/libftd2xx/compare/0.30.0...0.31.0
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.1"
version = "0.32.2"
authors = ["Alex Martens <[email protected]>"]
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.1"
version = "0.32.2"
# 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.1"
//! version = "0.32.2"
//! # 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

0 comments on commit 2694010

Please sign in to comment.