From 452e2874039c9540588caa9049600ae0a199049b Mon Sep 17 00:00:00 2001 From: Rene van der Meer Date: Fri, 25 Nov 2022 07:10:49 +0100 Subject: [PATCH] Bump version to 0.14.1 --- 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 266c9198..a51cbd01 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rppal" -version = "0.14.0" # Also update html_root_url in lib.rs +version = "0.14.1" # Also update html_root_url in lib.rs edition = "2021" rust-version = "1.56" authors = ["Rene van der Meer "] diff --git a/README.md b/README.md index db14e467..9d6ffbb7 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.0" +rppal = "0.14.1" ``` 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.0", features = ["hal"] } +rppal = { version = "0.14.1", 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 f7377550..2eb1e968 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.0")] +#![doc(html_root_url = "https://docs.rs/rppal/0.14.1")] #[macro_use] mod macros;