diff --git a/CHANGELOG.md b/CHANGELOG.md index 83e53e8..966a28a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,13 @@ 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.2] - 2021-06-27 +### Fixed +- Fixed static linking on Windows. + +### Changed +- Updated vendor library from 2.12.36.1 to 2.12.36.2 on Windows. + ## [0.8.1] - 2021-06-19 ### Added - Reinstated support for 32-bit Linux targets. @@ -55,7 +62,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/newAM/libftd2xx-ffi-rs/compare/0.8.1...HEAD +[Unreleased]: https://github.com/newAM/libftd2xx-ffi-rs/compare/0.8.2...HEAD +[0.8.2]: https://github.com/newAM/libftd2xx-ffi-rs/compare/0.8.1...0.8.2 [0.8.1]: https://github.com/newAM/libftd2xx-ffi-rs/compare/0.8.0...0.8.1 [0.8.0]: https://github.com/newAM/libftd2xx-ffi-rs/compare/0.7.0...0.8.0 [0.7.0]: https://github.com/newAM/libftd2xx-ffi-rs/compare/0.6.0...0.7.0 diff --git a/Cargo.toml b/Cargo.toml index 97af388..6aa2447 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "libftd2xx-ffi" -version = "0.8.1" # remember to update html_root_url +version = "0.8.2" # remember to update html_root_url 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 da387ce..1edd9e3 100644 --- a/README.md +++ b/README.md @@ -18,7 +18,7 @@ The default feature set will use dynamic linking. ```toml [dependencies] -libftd2xx-ffi = "~0.8.1" +libftd2xx-ffi = "~0.8.2" ``` ### Bindgen @@ -29,7 +29,7 @@ The bindings can also be generated during compilation using the [bindgen] feature flag. ```toml [dependencies] -libftd2xx-ffi = { version = "~0.8.1", features = ["bindgen"] } +libftd2xx-ffi = { version = "~0.8.2", features = ["bindgen"] } ``` Bindgen has additional dependencies that must be installed in order to @@ -40,7 +40,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.1", features = ["static"] } +libftd2xx-ffi = { version = "~0.8.2", features = ["static"] } ``` For GNU/Linux users, no further work is needed. Technically this may be preferred, however there may be license diff --git a/src/lib.rs b/src/lib.rs index 38ef8e3..af2243d 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -1,5 +1,5 @@ //! Rust FFI bindings to the [FTDI D2XX drivers](https://www.ftdichip.com/Drivers/D2XX.htm). -#![doc(html_root_url = "https://docs.rs/libftd2xx-ffi/0.8.1")] +#![doc(html_root_url = "https://docs.rs/libftd2xx-ffi/0.8.2")] #![allow(non_upper_case_globals)] #![allow(non_camel_case_types)] #![allow(non_snake_case)]