diff --git a/Cargo.toml b/Cargo.toml index a51cbd01..f3c5e99f 100644 --- a/Cargo.toml +++ b/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 "] @@ -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"] diff --git a/README.md b/README.md index 77c3dbb1..6019a0fa 100644 --- a/README.md +++ b/README.md @@ -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. diff --git a/src/lib.rs b/src/lib.rs index 076613b2..c504d3df 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -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;