From d169f58ea3622e4e52a88b2b0a3f5def75d08b28 Mon Sep 17 00:00:00 2001 From: Rene van der Meer Date: Sun, 10 Dec 2023 17:17:01 +0100 Subject: [PATCH] Bump version to 0.16.0 --- Cargo.toml | 2 +- README.md | 4 ++-- src/lib.rs | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 18b5af07..1f7a41a1 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "rppal" # Also update html_root_url in lib.rs -version = "0.15.0" +version = "0.16.0" edition = "2021" rust-version = "1.60" authors = ["Rene van der Meer "] diff --git a/README.md b/README.md index 9ab3e622..dd316198 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.15.0" +rppal = "0.16.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.15.0", features = ["hal"] } +rppal = { version = "0.16.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 e6fd92f0..6754818c 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.15.0")] +#![doc(html_root_url = "https://docs.rs/rppal/0.16.0")] #[macro_use] mod macros;