Skip to content
This repository was archived by the owner on Jul 1, 2025. It is now read-only.

Commit 160254f

Browse files
committed
Bump version to 0.21.0
1 parent b48c17a commit 160254f

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "rppal"
33
# Also update html_root_url in lib.rs
4-
version = "0.20.0"
4+
version = "0.21.0"
55
edition = "2021"
66
rust-version = "1.60"
77
authors = ["Rene van der Meer <[email protected]>"]

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,14 +39,14 @@ Add a dependency for `rppal` to your `Cargo.toml` using `cargo add rppal`, or by
3939

4040
```toml
4141
[dependencies]
42-
rppal = "0.20.0"
42+
rppal = "0.21.0"
4343
```
4444

4545
If your project requires `embedded-hal` trait implementations, specify either the `hal` or `hal-unproven` feature flag in the dependency declaration.
4646

4747
```toml
4848
[dependencies]
49-
rppal = { version = "0.20.0", features = ["hal"] }
49+
rppal = { version = "0.21.0", features = ["hal"] }
5050
```
5151

5252
Call `new()` on any of the peripherals to construct a new instance.

src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
//! guaranteed until v1.
1616
1717
// Used by rustdoc to link other crates to rppal's docs
18-
#![doc(html_root_url = "https://docs.rs/rppal/0.20.0")]
18+
#![doc(html_root_url = "https://docs.rs/rppal/0.21.0")]
1919

2020
#[macro_use]
2121
mod macros;

0 commit comments

Comments
 (0)