File tree Expand file tree Collapse file tree 4 files changed +10
-6
lines changed Expand file tree Collapse file tree 4 files changed +10
-6
lines changed Original file line number Diff line number Diff line change @@ -4,7 +4,10 @@ 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.30.0] - 2021-06-12
8+ ### Added
9+ - Added support for ` x86_64-apple-darwin ` , dynamic linking only.
10+
811### Changed
912- Updated ` libftd2xx-ffi ` dependency from ` 0.7.0 ` to ` 0.8.0 ` .
1013
@@ -118,7 +121,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
118121## Prior releases
119122A changelog was not kept for prior releases.
120123
121- [ Unreleased ] : https://github.com/newAM/libftd2xx-rs/compare/0.29.0...HEAD
124+ [ Unreleased ] : https://github.com/newAM/libftd2xx-rs/compare/0.30.0...HEAD
125+ [ 0.30.0 ] : https://github.com/newAM/libftd2xx-rs/compare/0.29.0...0.30.0
122126[ 0.29.0 ] : https://github.com/newAM/libftd2xx-rs/compare/0.28.0...0.29.0
123127[ 0.28.0 ] : https://github.com/newAM/libftd2xx-rs/compare/0.27.0...0.28.0
124128[ 0.27.0 ] : https://github.com/newAM/libftd2xx-rs/compare/0.26.0...0.27.0
Original file line number Diff line number Diff line change 11[package ]
22name = " libftd2xx"
3- version = " 0.29 .0" # remember to update html_root_url
3+ version = " 0.30 .0" # remember to update html_root_url
44authors = [
" Alex M. <[email protected] >" ]
55edition = " 2018"
66description = " Rust safe wrapper around the libftd2xx-ffi crate."
Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ Simply add this crate as a dependency in your `Cargo.toml`.
1515
1616``` toml
1717[dependencies .libftd2xx ]
18- version = " ~0.29 .0"
18+ version = " ~0.30 .0"
1919# statically link the vendor library, defaults to dynamic if not set
2020# this will make things "just work" on Linux
2121# not recommended on Windows due to legacy library requirements
Original file line number Diff line number Diff line change 88//!
99//! ```toml
1010//! [dependencies.libftd2xx]
11- //! version = "~0.29 .0"
11+ //! version = "~0.30 .0"
1212//! # statically link the vendor library, defaults to dynamic if not set
1313//! # this will make things "just work" on Linux
1414//! # not recommended on Windows due to legacy library requirements
9999//! [`ftd2xx-embedded-hal`]: https://crates.io/crates/ftd2xx-embedded-hal
100100//! [`embedded-hal`]: https://crates.io/crates/embedded-hal
101101#![ cfg_attr( docsrs, feature( doc_cfg) ) ]
102- #![ doc( html_root_url = "https://docs.rs/libftd2xx/0.29 .0" ) ]
102+ #![ doc( html_root_url = "https://docs.rs/libftd2xx/0.30 .0" ) ]
103103#![ deny( missing_docs) ]
104104
105105mod errors;
You can’t perform that action at this time.
0 commit comments