Skip to content

Commit 02a269d

Browse files
author
Jonas Schievink
committed
Bump to 0.12.0
1 parent f70554e commit 02a269d

File tree

18 files changed

+29
-24
lines changed

18 files changed

+29
-24
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22

33
## Unreleased
44

5+
(no changes)
6+
7+
## [0.12.0]
8+
59
### New Features
610

711
- Derive more traits for `gpio::{Level, Port}` ([#185]).
@@ -145,3 +149,4 @@ None
145149
[#172]: https://github.com/nrf-rs/nrf-hal/pull/172
146150
[0.11.0]: https://github.com/nrf-rs/nrf-hal/releases/tag/v0.11.0
147151
[0.11.1]: https://github.com/nrf-rs/nrf-hal/releases/tag/v0.11.1
152+
[0.12.0]: https://github.com/nrf-rs/nrf-hal/releases/tag/v0.12.0

examples/wdt-demo/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ publish = false
1111
cortex-m = "0.6.2"
1212
cortex-m-rtic = "0.5.3"
1313
rtt-target = {version = "0.2.0", features = ["cortex-m"] }
14-
nrf52840-hal = { version = "0.11", features = ["rt"], path = "../../nrf52840-hal" }
14+
nrf52840-hal = { features = ["rt"], path = "../../nrf52840-hal" }
1515

1616
[dependencies.embedded-hal]
1717
version = "0.2.3"

nrf-hal-common/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "nrf-hal-common"
3-
version = "0.11.1"
3+
version = "0.12.0"
44
description = "Implementation details of the nRF HAL crates. Don't use this directly, use one of the specific HAL crates instead (`nrfXYZ-hal`)."
55

66
repository = "https://github.com/nrf-rs/nrf-hal"

nrf-hal-common/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
//! Implementation details of the nRF HAL crates. Don't use this directly, use one of the specific
22
//! HAL crates instead (`nrfXYZ-hal`).
33
4-
#![doc(html_root_url = "https://docs.rs/nrf-hal-common/0.11.1")]
4+
#![doc(html_root_url = "https://docs.rs/nrf-hal-common/0.12.0")]
55
#![no_std]
66

77
use embedded_hal as hal;

nrf51-hal/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "nrf51-hal"
3-
version = "0.11.1"
3+
version = "0.12.0"
44
edition = "2018"
55
description = "HAL for nRF51 microcontrollers"
66
repository = "https://github.com/nrf-rs/nrf-hal"
@@ -23,7 +23,7 @@ nrf51 = "0.9.0"
2323
path = "../nrf-hal-common"
2424
default-features = false
2525
features = ["51"]
26-
version = "=0.11.1"
26+
version = "=0.12.0"
2727

2828
[dependencies.embedded-hal]
2929
features = ["unproven"]

nrf51-hal/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#![no_std]
2-
#![doc(html_root_url = "https://docs.rs/nrf51-hal/0.11.1")]
2+
#![doc(html_root_url = "https://docs.rs/nrf51-hal/0.12.0")]
33

44
use embedded_hal as hal;
55
pub use nrf_hal_common::*;

nrf52810-hal/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "nrf52810-hal"
3-
version = "0.11.1"
3+
version = "0.12.0"
44
edition = "2018"
55
description = "HAL for nRF52810 microcontrollers"
66
repository = "https://github.com/nrf-rs/nrf-hal"
@@ -22,7 +22,7 @@ nrf52810-pac = "0.9.0"
2222
path = "../nrf-hal-common"
2323
default-features = false
2424
features = ["52810"]
25-
version = "=0.11.1"
25+
version = "=0.12.0"
2626

2727
[dependencies.embedded-hal]
2828
features = ["unproven"]

nrf52810-hal/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#![no_std]
2-
#![doc(html_root_url = "https://docs.rs/nrf52810-hal/0.11.1")]
2+
#![doc(html_root_url = "https://docs.rs/nrf52810-hal/0.12.0")]
33

44
use embedded_hal as hal;
55
pub use nrf_hal_common::*;

nrf52811-hal/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "nrf52811-hal"
3-
version = "0.11.1"
3+
version = "0.12.0"
44
edition = "2018"
55
description = "HAL for nRF52811 microcontrollers"
66
repository = "https://github.com/nrf-rs/nrf-hal"
@@ -22,7 +22,7 @@ nrf52811-pac = "0.9.1"
2222
path = "../nrf-hal-common"
2323
default-features = false
2424
features = ["52811"]
25-
version = "=0.11.1"
25+
version = "=0.12.0"
2626

2727
[dependencies.embedded-hal]
2828
features = ["unproven"]

nrf52811-hal/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#![no_std]
2-
#![doc(html_root_url = "https://docs.rs/nrf52811-hal/0.11.1")]
2+
#![doc(html_root_url = "https://docs.rs/nrf52811-hal/0.12.0")]
33

44
use embedded_hal as hal;
55
pub use nrf_hal_common::*;

0 commit comments

Comments
 (0)