File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ All notable changes to this project will be documented in this file.
44The format is based on [ Keep a Changelog] ( https://keepachangelog.com/en/1.0.0/ ) ,
55and this project adheres to [ Semantic Versioning] ( https://semver.org/spec/v2.0.0.html ) .
66
7- ## [ Unreleased ]
7+ ## [ 0.6.0 ] - 2021-02-27
88### Changed
99- Updated the vendor library from ` 1.4.8 ` to ` 1.4.22 ` for linux targets.
1010
@@ -29,7 +29,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
2929### Fixed
3030- Fixed ` build.rs ` script to handle cross compilation.
3131
32- [ Unreleased ] : https://github.com/newAM/libftd2xx-ffi-rs/compare/0.5.1...HEAD
32+ [ Unreleased ] : https://github.com/newAM/libftd2xx-ffi-rs/compare/0.6.0...HEAD
33+ [ 0.6.0 ] : https://github.com/newAM/libftd2xx-ffi-rs/compare/0.6.0...0.5.1
3334[ 0.5.1 ] : https://github.com/newAM/libftd2xx-ffi-rs/compare/0.5.1...0.5.0
3435[ 0.5.0 ] : https://github.com/newAM/libftd2xx-ffi-rs/compare/0.5.0...0.4.1
3536[ 0.4.1 ] : https://github.com/newAM/libftd2xx-ffi-rs/compare/0.4.0...0.4.1
Original file line number Diff line number Diff line change 11[package ]
22name = " libftd2xx-ffi"
3- version = " 0.5.1 " # remember to update html_root_url
3+ version = " 0.6.0 " # remember to update html_root_url
44description = " Rust FFI bindings to the FTDI D2XX drivers."
55keywords = [" ftdi" , " ffi" , " usb" ]
66categories = [" external-ffi-bindings" ]
Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ The static library is distributed in this crate with permission from FTDI.
1717
1818``` toml
1919[dependencies ]
20- libftd2xx-ffi = " ~0.5.1 "
20+ libftd2xx-ffi = " ~0.6.0 "
2121```
2222
2323The default feature set will use pre-generated bindings.
@@ -27,7 +27,7 @@ The bindings can also be generated during compilation using the [bindgen]
2727feature flag.
2828``` toml
2929[dependencies ]
30- libftd2xx-ffi = { version = " ~0.5.1 " , features = [" bindgen" ] }
30+ libftd2xx-ffi = { version = " ~0.6.0 " , features = [" bindgen" ] }
3131```
3232
3333Bindgen has additional dependencies that must be installed in order to
Original file line number Diff line number Diff line change 1010//!
1111//! ```toml
1212//! [dependencies]
13- //! libftd2xx-ffi = "~0.5.1 "
13+ //! libftd2xx-ffi = "~0.6.0 "
1414//! ```
1515//!
1616//! The default feature set will use pre-generated bindings.
2020//! feature flag.
2121//! ```toml
2222//! [dependencies]
23- //! libftd2xx-ffi = { version = "~0.5.1 ", features = ["bindgen"] }
23+ //! libftd2xx-ffi = { version = "~0.6.0 ", features = ["bindgen"] }
2424//! ```
2525//!
2626//! Bindgen has additional dependencies that must be installed in order to
8585//! [FTDI Drivers Installation Guide for Linux]: http://www.ftdichip.cn/Support/Documents/AppNotes/AN_220_FTDI_Drivers_Installation_Guide_for_Linux.pdf
8686//! [libftd2xx]: https://github.com/newAM/libftd2xx-rs
8787//! [Rust Edition Guide]: https://doc.rust-lang.org/edition-guide/rust-2018/platform-and-target-support/musl-support-for-fully-static-binaries.html
88- #![ doc( html_root_url = "https://docs.rs/libftd2xx-ffi/0.5.1 " ) ]
88+ #![ doc( html_root_url = "https://docs.rs/libftd2xx-ffi/0.6.0 " ) ]
8989#![ allow( non_upper_case_globals) ]
9090#![ allow( non_camel_case_types) ]
9191#![ allow( non_snake_case) ]
You can’t perform that action at this time.
0 commit comments