Skip to content

Commit

Permalink
Bump version to 0.8.1.
Browse files Browse the repository at this point in the history
  • Loading branch information
newAM committed Jun 19, 2021
1 parent ddae67e commit 46a19ee
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 6 deletions.
7 changes: 6 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@ 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).

## [0.8.1] - 2021-06-19
### Added
- Reinstated support for 32-bit Linux targets.

## [0.8.0] - 2021-06-12
### Added
- Added support for `x86_64-apple-darwin`, dynamic linking only.
Expand Down Expand Up @@ -51,7 +55,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.8.0...HEAD
[Unreleased]: https://github.com/newAM/libftd2xx-ffi-rs/compare/0.8.1...HEAD
[0.8.1]: https://github.com/newAM/libftd2xx-ffi-rs/compare/0.8.0...0.8.1
[0.8.0]: https://github.com/newAM/libftd2xx-ffi-rs/compare/0.7.0...0.8.0
[0.7.0]: https://github.com/newAM/libftd2xx-ffi-rs/compare/0.6.0...0.7.0
[0.6.0]: https://github.com/newAM/libftd2xx-ffi-rs/compare/0.5.1...0.6.0
Expand Down
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.8.0" # remember to update html_root_url
version = "0.8.1" # 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
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ The default feature set will use dynamic linking.

```toml
[dependencies]
libftd2xx-ffi = "~0.8.0"
libftd2xx-ffi = "~0.8.1"
```

### Bindgen
Expand All @@ -29,7 +29,7 @@ The bindings can also be generated during compilation using the [bindgen]
feature flag.
```toml
[dependencies]
libftd2xx-ffi = { version = "~0.8.0", features = ["bindgen"] }
libftd2xx-ffi = { version = "~0.8.1", features = ["bindgen"] }
```

Bindgen has additional dependencies that must be installed in order to
Expand All @@ -40,7 +40,7 @@ Static linking the FTD2XX library into this crate can be done by using
the static feature flag.
```toml
[dependencies]
libftd2xx-ffi = { version = "~0.8.0", features = ["static"] }
libftd2xx-ffi = { version = "~0.8.1", features = ["static"] }
```
For GNU/Linux users, no further work is needed.
Technically this may be preferred, however there may be license
Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
//! Rust FFI bindings to the [FTDI D2XX drivers](https://www.ftdichip.com/Drivers/D2XX.htm).
#![doc(html_root_url = "https://docs.rs/libftd2xx-ffi/0.8.0")]
#![doc(html_root_url = "https://docs.rs/libftd2xx-ffi/0.8.1")]
#![allow(non_upper_case_globals)]
#![allow(non_camel_case_types)]
#![allow(non_snake_case)]
Expand Down

0 comments on commit 46a19ee

Please sign in to comment.