Skip to content

Commit 83c5d9c

Browse files
committed
Bump version to 0.13.1
1 parent fc38ce2 commit 83c5d9c

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,6 +1,6 @@
11
[package]
22
name = "rppal"
3-
version = "0.13.0" # Also update html_root_url in lib.rs
3+
version = "0.13.1" # Also update html_root_url in lib.rs
44
edition = "2018"
55
authors = ["Rene van der Meer <[email protected]>"]
66
description = "Interface for the Raspberry Pi's GPIO, I2C, PWM, SPI and UART peripherals."

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,14 +45,14 @@ Add a dependency for `rppal` to your `Cargo.toml`.
4545

4646
```toml
4747
[dependencies]
48-
rppal = "0.13.0"
48+
rppal = "0.13.1"
4949
```
5050

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

5353
```toml
5454
[dependencies]
55-
rppal = { version = "0.13.0", features = ["hal"] }
55+
rppal = { version = "0.13.1", features = ["hal"] }
5656
```
5757

5858
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
@@ -33,7 +33,7 @@
3333
//! guaranteed until v1.0.0.
3434
3535
// Used by rustdoc to link other crates to rppal's docs
36-
#![doc(html_root_url = "https://docs.rs/rppal/0.13.0")]
36+
#![doc(html_root_url = "https://docs.rs/rppal/0.13.1")]
3737

3838
#[macro_use]
3939
mod macros;

0 commit comments

Comments
 (0)