Skip to content

Commit d28a86e

Browse files
committed
Bump version to 0.6.0
1 parent 65cb40a commit d28a86e

File tree

4 files changed

+9
-8
lines changed

4 files changed

+9
-8
lines changed

CHANGELOG.md

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

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-ffi"
3-
version = "0.5.1" # remember to update html_root_url
3+
version = "0.6.0" # remember to update html_root_url
44
description = "Rust FFI bindings to the FTDI D2XX drivers."
55
keywords = ["ftdi", "ffi", "usb"]
66
categories = ["external-ffi-bindings"]

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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

2323
The default feature set will use pre-generated bindings.
@@ -27,7 +27,7 @@ The bindings can also be generated during compilation using the [bindgen]
2727
feature 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

3333
Bindgen has additional dependencies that must be installed in order to

src/lib.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
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.
@@ -20,7 +20,7 @@
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
@@ -85,7 +85,7 @@
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)]

0 commit comments

Comments
 (0)