diff --git a/CHANGELOG.md b/CHANGELOG.md index 0d37cb4..ef82a4a 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 019c020..72e1c58 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 37c8979..0e28ba9 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 1ad29e1..a5e98bd 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;