Skip to content

Commit

Permalink
Bump version to 0.17.0
Browse files Browse the repository at this point in the history
  • Loading branch information
golemparts committed Jan 15, 2024
1 parent 5dd878b commit 6486f80
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 10 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
@@ -1,6 +1,6 @@
# Changelog

## 0.17.0 (TBD)
## 0.17.0 (January 15, 2024)

* (Breaking change) Update `embedded-hal` to v1.0.0 (contributed by @reitermarkus).

Expand Down
8 changes: 2 additions & 6 deletions Cargo.toml
@@ -1,7 +1,7 @@
[package]
name = "rppal"
# Also update html_root_url in lib.rs
version = "0.16.1"
version = "0.17.0"
edition = "2021"
rust-version = "1.60"
authors = ["Rene van der Meer <rene@golemparts.com>"]
Expand Down Expand Up @@ -30,9 +30,5 @@ default = []
embedded-hal-0 = ["dep:embedded-hal-0", "dep:void", "embedded-hal-nb", "nb"]
embedded-hal = ["dep:embedded-hal", "dep:spin_sleep"]
embedded-hal-nb = ["dep:embedded-hal-nb", "embedded-hal"]
hal = [
"embedded-hal-0",
"embedded-hal",
"embedded-hal-nb",
]
hal = ["embedded-hal-0", "embedded-hal", "embedded-hal-nb"]
hal-unproven = ["embedded-hal-0/unproven", "hal"]
4 changes: 2 additions & 2 deletions README.md
Expand Up @@ -45,14 +45,14 @@ Add a dependency for `rppal` to your `Cargo.toml` using `cargo add rppal`, or by

```toml
[dependencies]
rppal = "0.16.1"
rppal = "0.17.0"
```

If your project requires `embedded-hal` trait implementations, specify either the `hal` or `hal-unproven` feature flag in the dependency declaration.

```toml
[dependencies]
rppal = { version = "0.16.1", features = ["hal"] }
rppal = { version = "0.17.0", features = ["hal"] }
```

Call `new()` on any of the peripherals to construct a new instance.
Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
Expand Up @@ -13,7 +13,7 @@
//! guaranteed until v1.0.0.

// Used by rustdoc to link other crates to rppal's docs
#![doc(html_root_url = "https://docs.rs/rppal/0.16.1")]
#![doc(html_root_url = "https://docs.rs/rppal/0.17.0")]

#[macro_use]
mod macros;
Expand Down

0 comments on commit 6486f80

Please sign in to comment.