From 3c5c543aa3d494b25647840f596572f56211d42c Mon Sep 17 00:00:00 2001 From: Alex Martens Date: Sat, 27 Aug 2022 18:37:16 -0700 Subject: [PATCH] version: 0.32.0 -> 0.32.1 --- CHANGELOG.md | 9 ++++++--- Cargo.toml | 2 +- README.md | 2 +- src/lib.rs | 2 +- 4 files changed, 9 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9851279..c41440b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,10 +4,12 @@ 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). -## [Unreleased] +## [0.32.1] - 2022-08-27 +### Added +- Implement `Send` and `Sync` for `Ftdi`. + ### Changed - Updated the edition from 2018 to 2021. -- Implement `Send` and `Sync` for `Ftdi`. ## [0.32.0] - 2021-11-07 ### Added @@ -142,7 +144,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.0...HEAD +[Unreleased]: https://github.com/ftdi-rs/libftd2xx/compare/0.32.1...HEAD +[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 [0.30.0]: https://github.com/ftdi-rs/libftd2xx/compare/0.29.0...0.30.0 diff --git a/Cargo.toml b/Cargo.toml index e12473d..471e7df 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "libftd2xx" -version = "0.32.0" +version = "0.32.1" authors = ["Alex Martens "] edition = "2021" description = "Rust safe wrapper around the libftd2xx-ffi crate." diff --git a/README.md b/README.md index c77ddeb..b351dfe 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" +version = "0.32.1" # 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 b8c65c4..1a33ab2 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -8,7 +8,7 @@ //! //! ```toml //! [dependencies.libftd2xx] -//! version = "0.32" +//! version = "0.32.1" //! # statically link the vendor library, defaults to dynamic if not set //! # this will make things "just work" on Linux and Windows //! features = ["static"]