From 57e5a355d8e15a89f959d5dbf654b3a5a6775b6f Mon Sep 17 00:00:00 2001 From: Rene van der Meer <9930578+golemparts@users.noreply.github.com> Date: Wed, 14 Aug 2024 13:49:25 +0200 Subject: [PATCH] Update documentation --- CHANGELOG.md | 2 +- Cargo.toml | 2 +- README.md | 4 ++-- src/lib.rs | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0d37cb40..ef82a4a7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,6 @@ # Changelog -## 0.19.0 (TBD) +## 0.19.0 (Aug 14, 2024) * **Gpio**: Add 'Event' struct, containing interrupt event details. * **Gpio**: (Breaking change) Add optional `debounce` argument to `set_interrupt` and `set_async_interrupt`. diff --git a/Cargo.toml b/Cargo.toml index 019c020d..72e1c589 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "rppal" # Also update html_root_url in lib.rs -version = "0.18.0" +version = "0.19.0" edition = "2021" rust-version = "1.60" authors = ["Rene van der Meer "] diff --git a/README.md b/README.md index 37c8979b..0e28ba96 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.18.0" +rppal = "0.19.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.18.0", features = ["hal"] } +rppal = { version = "0.19.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 1ad29e14..a5e98bdd 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -13,7 +13,7 @@ //! guaranteed until v1. // Used by rustdoc to link other crates to rppal's docs -#![doc(html_root_url = "https://docs.rs/rppal/0.18.0")] +#![doc(html_root_url = "https://docs.rs/rppal/0.19.0")] #[macro_use] mod macros;