Skip to content

Commit

Permalink
Update documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
golemparts committed Aug 14, 2024
1 parent 48c23ab commit 57e5a35
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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`.
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -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 <rene@golemparts.com>"]
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit 57e5a35

Please sign in to comment.