Skip to content

Commit

Permalink
Bump version to 0.6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
newAM committed Feb 27, 2021
1 parent 65cb40a commit d28a86e
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 8 deletions.
5 changes: 3 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ 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.6.0] - 2021-02-27
### Changed
- Updated the vendor library from `1.4.8` to `1.4.22` for linux targets.

Expand All @@ -29,7 +29,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Fixed
- Fixed `build.rs` script to handle cross compilation.

[Unreleased]: https://github.com/newAM/libftd2xx-ffi-rs/compare/0.5.1...HEAD
[Unreleased]: https://github.com/newAM/libftd2xx-ffi-rs/compare/0.6.0...HEAD
[0.6.0]: https://github.com/newAM/libftd2xx-ffi-rs/compare/0.6.0...0.5.1
[0.5.1]: https://github.com/newAM/libftd2xx-ffi-rs/compare/0.5.1...0.5.0
[0.5.0]: https://github.com/newAM/libftd2xx-ffi-rs/compare/0.5.0...0.4.1
[0.4.1]: https://github.com/newAM/libftd2xx-ffi-rs/compare/0.4.0...0.4.1
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "libftd2xx-ffi"
version = "0.5.1" # remember to update html_root_url
version = "0.6.0" # remember to update html_root_url
description = "Rust FFI bindings to the FTDI D2XX drivers."
keywords = ["ftdi", "ffi", "usb"]
categories = ["external-ffi-bindings"]
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ The static library is distributed in this crate with permission from FTDI.

```toml
[dependencies]
libftd2xx-ffi = "~0.5.1"
libftd2xx-ffi = "~0.6.0"
```

The default feature set will use pre-generated bindings.
Expand All @@ -27,7 +27,7 @@ The bindings can also be generated during compilation using the [bindgen]
feature flag.
```toml
[dependencies]
libftd2xx-ffi = { version = "~0.5.1", features = ["bindgen"] }
libftd2xx-ffi = { version = "~0.6.0", features = ["bindgen"] }
```

Bindgen has additional dependencies that must be installed in order to
Expand Down
6 changes: 3 additions & 3 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
//!
//! ```toml
//! [dependencies]
//! libftd2xx-ffi = "~0.5.1"
//! libftd2xx-ffi = "~0.6.0"
//! ```
//!
//! The default feature set will use pre-generated bindings.
Expand All @@ -20,7 +20,7 @@
//! feature flag.
//! ```toml
//! [dependencies]
//! libftd2xx-ffi = { version = "~0.5.1", features = ["bindgen"] }
//! libftd2xx-ffi = { version = "~0.6.0", features = ["bindgen"] }
//! ```
//!
//! Bindgen has additional dependencies that must be installed in order to
Expand Down Expand Up @@ -85,7 +85,7 @@
//! [FTDI Drivers Installation Guide for Linux]: http://www.ftdichip.cn/Support/Documents/AppNotes/AN_220_FTDI_Drivers_Installation_Guide_for_Linux.pdf
//! [libftd2xx]: https://github.com/newAM/libftd2xx-rs
//! [Rust Edition Guide]: https://doc.rust-lang.org/edition-guide/rust-2018/platform-and-target-support/musl-support-for-fully-static-binaries.html
#![doc(html_root_url = "https://docs.rs/libftd2xx-ffi/0.5.1")]
#![doc(html_root_url = "https://docs.rs/libftd2xx-ffi/0.6.0")]
#![allow(non_upper_case_globals)]
#![allow(non_camel_case_types)]
#![allow(non_snake_case)]
Expand Down

0 comments on commit d28a86e

Please sign in to comment.