Skip to content

Commit 86ae75a

Browse files
committed
Bump version to 0.30.0.
1 parent 4b16b74 commit 86ae75a

File tree

4 files changed

+10
-6
lines changed

4 files changed

+10
-6
lines changed

CHANGELOG.md

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,10 @@ All notable changes to this project will be documented in this file.
44
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
55
and 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
119122
A 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

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "libftd2xx"
3-
version = "0.29.0" # remember to update html_root_url
3+
version = "0.30.0" # remember to update html_root_url
44
authors = ["Alex M. <[email protected]>"]
55
edition = "2018"
66
description = "Rust safe wrapper around the libftd2xx-ffi crate."

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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

src/lib.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
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
@@ -99,7 +99,7 @@
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

105105
mod errors;

0 commit comments

Comments
 (0)