Skip to content

Commit 74219d3

Browse files
committed
Bump version to 0.5.0
1 parent c5fe3fc commit 74219d3

File tree

4 files changed

+27
-26
lines changed

4 files changed

+27
-26
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.5.0] - 2020-12-28
88
### Added
99
- Added pre-generated bindings for `i686-unknown-linux` targets.
1010
- Added pre-generated bindings for the `i686-pc-windows-msvc` target.
@@ -21,5 +21,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
2121
### Fixed
2222
- Fixed `build.rs` script to handle cross compilation.
2323

24-
[Unreleased]: https://github.com/newAM/libftd2xx-ffi-rs/compare/0.4.1...HEAD
24+
[Unreleased]: https://github.com/newAM/libftd2xx-ffi-rs/compare/0.5.0...HEAD
25+
[0.5.0]: https://github.com/newAM/libftd2xx-ffi-rs/compare/0.5.0...0.4.1
2526
[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.4.1" # remember to update html_root_url
3+
version = "0.5.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: 11 additions & 11 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.4.1"
20+
libftd2xx-ffi = "~0.5.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.4.1", features = ["bindgen"] }
30+
libftd2xx-ffi = { version = "~0.5.0", features = ["bindgen"] }
3131
```
3232

3333
Bindgen has additional dependencies that must be installed in order to
@@ -46,15 +46,15 @@ compile successfully, see the [bindgen requirements] page for more details.
4646
These targets are provided, but they are untested.
4747
Use at your own risk.
4848

49-
* `aarch64-unknown-linux-gnu`
50-
* `aarch64-unknown-linux-musl`
51-
* `arm-unknown-linux-gnueabihf`
52-
* `arm-unknown-linux-musleabihf`
53-
* `armv7-unknown-linux-gnueabihf`
54-
* `armv7-unknown-linux-musleabihf`
55-
* `i686-pc-windows-msvc`
56-
* `i686-unknown-linux-gnu`
57-
* `i686-unknown-linux-musl`
49+
* `aarch64-unknown-linux-gnu` (static linking only)
50+
* `aarch64-unknown-linux-musl` (static linking only)
51+
* `arm-unknown-linux-gnueabihf` (static linking only)
52+
* `arm-unknown-linux-musleabihf` (static linking only)
53+
* `armv7-unknown-linux-gnueabihf` (static linking only)
54+
* `armv7-unknown-linux-musleabihf` (static linking only)
55+
* `i686-pc-windows-msvc` (dynamic linking only)
56+
* `i686-unknown-linux-gnu` (static linking only)
57+
* `i686-unknown-linux-musl` (static linking only)
5858

5959
## References
6060

src/lib.rs

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
//!
1111
//! ```toml
1212
//! [dependencies]
13-
//! libftd2xx-ffi = "~0.4.1"
13+
//! libftd2xx-ffi = "~0.5.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.4.1", features = ["bindgen"] }
23+
//! libftd2xx-ffi = { version = "~0.5.0", features = ["bindgen"] }
2424
//! ```
2525
//!
2626
//! Bindgen has additional dependencies that must be installed in order to
@@ -39,15 +39,15 @@
3939
//! These targets are provided, but they are untested.
4040
//! Use at your own risk.
4141
//!
42-
//! * `aarch64-unknown-linux-gnu`
43-
//! * `aarch64-unknown-linux-musl`
44-
//! * `arm-unknown-linux-gnueabihf`
45-
//! * `arm-unknown-linux-musleabihf`
46-
//! * `armv7-unknown-linux-gnueabihf`
47-
//! * `armv7-unknown-linux-musleabihf`
48-
//! * `i686-pc-windows-msvc`
49-
//! * `i686-unknown-linux-gnu`
50-
//! * `i686-unknown-linux-musl`
42+
//! * `aarch64-unknown-linux-gnu` (static linking only)
43+
//! * `aarch64-unknown-linux-musl` (static linking only)
44+
//! * `arm-unknown-linux-gnueabihf` (static linking only)
45+
//! * `arm-unknown-linux-musleabihf` (static linking only)
46+
//! * `armv7-unknown-linux-gnueabihf` (static linking only)
47+
//! * `armv7-unknown-linux-musleabihf` (static linking only)
48+
//! * `i686-pc-windows-msvc` (dynamic linking only)
49+
//! * `i686-unknown-linux-gnu` (static linking only)
50+
//! * `i686-unknown-linux-musl` (static linking only)
5151
//!
5252
//! # References
5353
//!
@@ -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.4.1")]
88+
#![doc(html_root_url = "https://docs.rs/libftd2xx-ffi/0.5.0")]
8989
#![allow(non_upper_case_globals)]
9090
#![allow(non_camel_case_types)]
9191
#![allow(non_snake_case)]

0 commit comments

Comments
 (0)