Skip to content

Commit

Permalink
Bump version to 0.15.0
Browse files Browse the repository at this point in the history
  • Loading branch information
golemparts committed Oct 14, 2023
1 parent eb359e1 commit a2983f4
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 5 deletions.
12 changes: 10 additions & 2 deletions Cargo.toml
@@ -1,6 +1,7 @@
[package]
name = "rppal"
version = "0.14.1" # Also update html_root_url in lib.rs
# Also update html_root_url in lib.rs
version = "0.15.0"
edition = "2021"
rust-version = "1.56"
authors = ["Rene van der Meer <rene@golemparts.com>"]
Expand All @@ -26,5 +27,12 @@ simple-signal = "1.1.1"

[features]
default = []
hal = ["nb", "embedded-hal", "embedded-hal-nb", "embedded-hal-0", "spin_sleep", "void"]
hal = [
"nb",
"embedded-hal",
"embedded-hal-nb",
"embedded-hal-0",
"spin_sleep",
"void",
]
hal-unproven = ["nb", "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.14.1"
rppal = "0.15.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.14.1", features = ["hal"] }
rppal = { version = "0.15.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.14.1")]
#![doc(html_root_url = "https://docs.rs/rppal/0.15.0")]

#[macro_use]
mod macros;
Expand Down

0 comments on commit a2983f4

Please sign in to comment.