Skip to content

Commit 361cb1b

Browse files
committed
Bump version to 0.5.1
1 parent 10f362b commit 361cb1b

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
2626
- Fixed `build.rs` script to handle cross compilation.
2727

2828
[Unreleased]: https://github.com/newAM/libftd2xx-ffi-rs/compare/0.5.1...HEAD
29-
[0.5.0]: https://github.com/newAM/libftd2xx-ffi-rs/compare/0.5.1...0.5.0
29+
[0.5.1]: https://github.com/newAM/libftd2xx-ffi-rs/compare/0.5.1...0.5.0
3030
[0.5.0]: https://github.com/newAM/libftd2xx-ffi-rs/compare/0.5.0...0.4.1
3131
[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.0" # remember to update html_root_url
3+
version = "0.5.1" # 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.0"
20+
libftd2xx-ffi = "~0.5.1"
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.0", features = ["bindgen"] }
30+
libftd2xx-ffi = { version = "~0.5.1", 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.0"
13+
//! libftd2xx-ffi = "~0.5.1"
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.0", features = ["bindgen"] }
23+
//! libftd2xx-ffi = { version = "~0.5.1", 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.0")]
88+
#![doc(html_root_url = "https://docs.rs/libftd2xx-ffi/0.5.1")]
8989
#![allow(non_upper_case_globals)]
9090
#![allow(non_camel_case_types)]
9191
#![allow(non_snake_case)]

0 commit comments

Comments
 (0)