Skip to content

Commit

Permalink
embedded-hal: 1.0.0-alpha.11 -> 1.0.0-rc.1
Browse files Browse the repository at this point in the history
  • Loading branch information
newAM committed Aug 16, 2023
1 parent 7b3c52b commit c65e9b7
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 6 deletions.
8 changes: 7 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,11 @@ 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.17.0] - 2023-08-15
### Changed
- Updated the alpha release of `embedded-hal` from `1.0.0-alpha.11` to `1.0.0-rc.1`.
- Updated the alpha release of `embedded-hal-nb` from `1.0.0-alpha.3` to `1.0.0-rc.1`.

## [0.16.0] - 2023-07-05
### Changed
- Updated the alpha release of `embedded-hal` from `1.0.0-alpha.10` to `1.0.0-alpha.11`.
Expand Down Expand Up @@ -143,7 +148,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## [0.1.0] - 2020-09-12
- Initial release

[Unreleased]: https://github.com/ftdi-rs/ftdi-embedded-hal/compare/v0.16.0...HEAD
[Unreleased]: https://github.com/ftdi-rs/ftdi-embedded-hal/compare/v0.17.0...HEAD
[0.17.0]: https://github.com/ftdi-rs/ftdi-embedded-hal/compare/v0.16.0...v0.17.0
[0.16.0]: https://github.com/ftdi-rs/ftdi-embedded-hal/compare/v0.15.1...v0.16.0
[0.15.1]: https://github.com/ftdi-rs/ftdi-embedded-hal/compare/v0.15.0...v0.15.1
[0.15.0]: https://github.com/ftdi-rs/ftdi-embedded-hal/compare/v0.14.0...v0.15.0
Expand Down
6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ftdi-embedded-hal"
version = "0.16.0"
version = "0.17.0"
authors = ["Alex Martens <[email protected]>"]
description = "embedded-hal implementation for FTDI USB devices."
keywords = ["ftdi", "usb", "io", "hal"]
Expand All @@ -17,8 +17,8 @@ default = []

[dependencies]
eh0 = { package = "embedded-hal", version = "0.2.7", features = ["unproven"] }
eh1 = { package = "embedded-hal", version = "=1.0.0-alpha.11" }
ehnb1 = { package = "embedded-hal-nb", version = "=1.0.0-alpha.3" }
eh1 = { package = "embedded-hal", version = "=1.0.0-rc.1" }
ehnb1 = { package = "embedded-hal-nb", version = "=1.0.0-rc.1" }
ftdi = { version = "0.1.3", optional = true }
ftdi-mpsse = "0.1"
libftd2xx = { version = "0.32", optional = true }
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ FTDI device into the [embedded-hal] traits.

```toml
[dependencies.ftdi-embedded-hal]
version = "0.16.0"
version = "0.17.0"
features = ["libftd2xx", "libftd2xx-static"]
```

Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
//!
//! ```toml
//! [dependencies.ftdi-embedded-hal]
//! version = "0.16.0"
//! version = "0.17.0"
//! features = ["libftd2xx", "libftd2xx-static"]
//! ```
//!
Expand Down

0 comments on commit c65e9b7

Please sign in to comment.