From 72ebd81cce0c4beebccc864563ef2a428bde5cf0 Mon Sep 17 00:00:00 2001 From: Alex Martens Date: Sun, 27 Nov 2022 15:19:57 -0800 Subject: [PATCH] version: 0.8.5 -> 0.8.6 --- CHANGELOG.md | 7 ++++++- Cargo.toml | 2 +- README.md | 6 +++--- 3 files changed, 10 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a3f21f0..e6f428a 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.8.6] - 2022-11-27 +### Added +- Added binaries for Windows targets using the GNU toolchain. + ## [0.8.5] - 2022-09-17 ### Added - Added the `links` manifest key. @@ -78,7 +82,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Fixed - Fixed `build.rs` script to handle cross compilation. -[Unreleased]: https://github.com/ftdi-rs/libftd2xx-ffi/compare/0.8.5...HEAD +[Unreleased]: https://github.com/ftdi-rs/libftd2xx-ffi/compare/0.8.6...HEAD +[0.8.6]: https://github.com/ftdi-rs/libftd2xx-ffi/compare/0.8.5...0.8.6 [0.8.5]: https://github.com/ftdi-rs/libftd2xx-ffi/compare/0.8.4...0.8.5 [0.8.4]: https://github.com/ftdi-rs/libftd2xx-ffi/compare/0.8.3...0.8.4 [0.8.3]: https://github.com/ftdi-rs/libftd2xx-ffi/compare/0.8.2...0.8.3 diff --git a/Cargo.toml b/Cargo.toml index 6fa5df8..028ae51 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "libftd2xx-ffi" -version = "0.8.5" +version = "0.8.6" description = "Rust FFI bindings to the FTDI D2XX drivers." keywords = ["ftdi", "ffi", "usb"] categories = ["external-ffi-bindings"] diff --git a/README.md b/README.md index 011bed8..fda95ee 100644 --- a/README.md +++ b/README.md @@ -17,7 +17,7 @@ The default feature set will use dynamic linking. ```toml [dependencies] -libftd2xx-ffi = "~0.8.5" +libftd2xx-ffi = "~0.8.6" ``` ### Bindgen @@ -28,7 +28,7 @@ The bindings can also be generated during compilation using the [bindgen] feature flag. ```toml [dependencies] -libftd2xx-ffi = { version = "~0.8.5", features = ["bindgen"] } +libftd2xx-ffi = { version = "~0.8.6", features = ["bindgen"] } ``` Bindgen has additional dependencies that must be installed in order to @@ -39,7 +39,7 @@ Static linking the FTD2XX library into this crate can be done by using the static feature flag. ```toml [dependencies] -libftd2xx-ffi = { version = "~0.8.5", features = ["static"] } +libftd2xx-ffi = { version = "~0.8.6", features = ["static"] } ``` Static linking may be preferred, however there may be license incompatibilities (static linking with GPL code).