Skip to content

Commit

Permalink
version: 0.8.6 -> 0.8.7
Browse files Browse the repository at this point in the history
  • Loading branch information
newAM committed Dec 1, 2024
1 parent b370409 commit 9f4e13c
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 6 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.8.7] - 2024-12-01
### Added
- Added support for the `aarch64-pc-windows-msvc` target.

Expand Down Expand Up @@ -86,7 +86,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/ftdi-rs/libftd2xx-ffi/compare/0.8.6...HEAD
[Unreleased]: https://github.com/ftdi-rs/libftd2xx-ffi/compare/0.8.7...HEAD
[0.8.7]: https://github.com/ftdi-rs/libftd2xx-ffi/compare/0.8.6...0.8.7
[0.8.6]: https://github.com/ftdi-rs/libftd2xx-ffi/compare/0.8.5...0.8.6
[0.8.5]: https://github.com/ftdi-rs/libftd2xx-ffi/compare/0.8.4...0.8.5
[0.8.4]: https://github.com/ftdi-rs/libftd2xx-ffi/compare/0.8.3...0.8.4
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.6"
version = "0.8.7"
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 @@ -17,7 +17,7 @@ The default feature set will use dynamic linking.

```toml
[dependencies]
libftd2xx-ffi = "~0.8.6"
libftd2xx-ffi = "~0.8.7"
```

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

Bindgen has additional dependencies that must be installed in order to
Expand All @@ -39,7 +39,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.6", features = ["static"] }
libftd2xx-ffi = { version = "~0.8.7", features = ["static"] }
```
Static linking may be preferred, however there may be license
incompatibilities (static linking with GPL code).
Expand Down

0 comments on commit 9f4e13c

Please sign in to comment.