From 86ae75af562f1432b130c142032cdb10e5fe3d88 Mon Sep 17 00:00:00 2001 From: Alex M Date: Sat, 12 Jun 2021 09:09:30 -0700 Subject: [PATCH] Bump version to 0.30.0. --- CHANGELOG.md | 8 ++++++-- Cargo.toml | 2 +- README.md | 2 +- src/lib.rs | 4 ++-- 4 files changed, 10 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ef658b5..d6fe88f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,7 +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). -## [Unreleased] +## [0.30.0] - 2021-06-12 +### Added +- Added support for `x86_64-apple-darwin`, dynamic linking only. + ### Changed - Updated `libftd2xx-ffi` dependency from `0.7.0` to `0.8.0`. @@ -118,7 +121,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/newAM/libftd2xx-rs/compare/0.29.0...HEAD +[Unreleased]: https://github.com/newAM/libftd2xx-rs/compare/0.30.0...HEAD +[0.30.0]: https://github.com/newAM/libftd2xx-rs/compare/0.29.0...0.30.0 [0.29.0]: https://github.com/newAM/libftd2xx-rs/compare/0.28.0...0.29.0 [0.28.0]: https://github.com/newAM/libftd2xx-rs/compare/0.27.0...0.28.0 [0.27.0]: https://github.com/newAM/libftd2xx-rs/compare/0.26.0...0.27.0 diff --git a/Cargo.toml b/Cargo.toml index 04148c6..f7d7708 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "libftd2xx" -version = "0.29.0" # remember to update html_root_url +version = "0.30.0" # remember to update html_root_url authors = ["Alex M. "] edition = "2018" description = "Rust safe wrapper around the libftd2xx-ffi crate." diff --git a/README.md b/README.md index 5763b65..118dc39 100644 --- a/README.md +++ b/README.md @@ -15,7 +15,7 @@ Simply add this crate as a dependency in your `Cargo.toml`. ```toml [dependencies.libftd2xx] -version = "~0.29.0" +version = "~0.30.0" # statically link the vendor library, defaults to dynamic if not set # this will make things "just work" on Linux # not recommended on Windows due to legacy library requirements diff --git a/src/lib.rs b/src/lib.rs index c36a391..6146eb4 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -8,7 +8,7 @@ //! //! ```toml //! [dependencies.libftd2xx] -//! version = "~0.29.0" +//! version = "~0.30.0" //! # statically link the vendor library, defaults to dynamic if not set //! # this will make things "just work" on Linux //! # not recommended on Windows due to legacy library requirements @@ -99,7 +99,7 @@ //! [`ftd2xx-embedded-hal`]: https://crates.io/crates/ftd2xx-embedded-hal //! [`embedded-hal`]: https://crates.io/crates/embedded-hal #![cfg_attr(docsrs, feature(doc_cfg))] -#![doc(html_root_url = "https://docs.rs/libftd2xx/0.29.0")] +#![doc(html_root_url = "https://docs.rs/libftd2xx/0.30.0")] #![deny(missing_docs)] mod errors;