Skip to content

Commit

Permalink
Bump version to 0.11.3
Browse files Browse the repository at this point in the history
  • Loading branch information
golemparts committed Jun 24, 2019
1 parent a402a7a commit c3df5fb
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "rppal"
version = "0.11.2" # Also update html_root_url in lib.rs
version = "0.11.3" # Also update html_root_url in lib.rs
edition = "2018"
authors = ["Rene van der Meer <rene@golemparts.com>"]
description = "Interface for the Raspberry Pi's GPIO, I2C, PWM, SPI and UART peripherals."
Expand Down
4 changes: 2 additions & 2 deletions README.md
Expand Up @@ -43,14 +43,14 @@ Add a dependency for `rppal` to your `Cargo.toml`.

```toml
[dependencies]
rppal = "0.11.2"
rppal = "0.11.3"
```

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.11.2", features = ["hal"] }
rppal = { version = "0.11.3", 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
Expand Up @@ -32,7 +32,7 @@
//! v1.0.0.

// Used by rustdoc to link other crates to rppal's docs
#![doc(html_root_url = "https://docs.rs/rppal/0.11.2")]
#![doc(html_root_url = "https://docs.rs/rppal/0.11.3")]

#[macro_use]
mod macros;
Expand Down

0 comments on commit c3df5fb

Please sign in to comment.