Skip to content

Commit a03e521

Browse files
Merge #325
325: Publish v0.12.2 r=jonas-schievink a=jonas-schievink bors r+ Co-authored-by: Jonas Schievink <[email protected]>
2 parents 9d0c754 + 084624f commit a03e521

File tree

17 files changed

+63
-23
lines changed

17 files changed

+63
-23
lines changed

CHANGELOG.md

Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,45 @@
44

55
(no changes)
66

7+
## [0.12.2]
8+
9+
### New Features
10+
11+
- Enable PWM for the nRF9160 and nRF52832 ([#311] [#318]).
12+
13+
### Enhancements
14+
15+
- Add a testsuite for the HAL ([#291]).
16+
- Document that `ieee802154::Radio::recv_timeout` writes the received data to `packet` ([#307]).
17+
- Update nRF9160 HAL with latest memory map ([#321]).
18+
- Add a simple UART example ([#317]).
19+
- Add readme documentation for demos ([#246]).
20+
- Link `README.md` into all sub-crates so they show up on crates.io ([#322]).
21+
- Enhance the RTC example with an interrupt ([#324]).
22+
23+
### Fixes
24+
25+
- Fix spelling errors and RTIC name ([#308]).
26+
- `ieee802154`: mark `start_recv` as unsafe ([#312]).
27+
- Fix PWM EasyDMA max length ([#313]).
28+
- Fix EasyDMA max size ([#315]).
29+
- Work around erratum when enabling UARTE on nRF9160 ([#319]).
30+
31+
[#246]: https://github.com/nrf-rs/nrf-hal/pull/246
32+
[#291]: https://github.com/nrf-rs/nrf-hal/pull/291
33+
[#307]: https://github.com/nrf-rs/nrf-hal/pull/307
34+
[#308]: https://github.com/nrf-rs/nrf-hal/pull/308
35+
[#311]: https://github.com/nrf-rs/nrf-hal/pull/311
36+
[#312]: https://github.com/nrf-rs/nrf-hal/pull/312
37+
[#313]: https://github.com/nrf-rs/nrf-hal/pull/313
38+
[#315]: https://github.com/nrf-rs/nrf-hal/pull/315
39+
[#317]: https://github.com/nrf-rs/nrf-hal/pull/317
40+
[#318]: https://github.com/nrf-rs/nrf-hal/pull/318
41+
[#319]: https://github.com/nrf-rs/nrf-hal/pull/319
42+
[#321]: https://github.com/nrf-rs/nrf-hal/pull/321
43+
[#322]: https://github.com/nrf-rs/nrf-hal/pull/322
44+
[#324]: https://github.com/nrf-rs/nrf-hal/pull/324
45+
746
## [0.12.1]
847

948
### New Features
@@ -195,3 +234,4 @@ None
195234
[0.11.1]: https://github.com/nrf-rs/nrf-hal/releases/tag/v0.11.1
196235
[0.12.0]: https://github.com/nrf-rs/nrf-hal/releases/tag/v0.12.0
197236
[0.12.1]: https://github.com/nrf-rs/nrf-hal/releases/tag/v0.12.1
237+
[0.12.2]: https://github.com/nrf-rs/nrf-hal/releases/tag/v0.12.2

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.12.1"
3+
version = "0.12.2"
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
readme = "../README.md"
66

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.12.1")]
4+
#![doc(html_root_url = "https://docs.rs/nrf-hal-common/0.12.2")]
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.12.1"
3+
version = "0.12.2"
44
edition = "2018"
55
description = "HAL for nRF51 microcontrollers"
66
readme = "../README.md"
@@ -25,7 +25,7 @@ nrf51 = "0.9.0"
2525
path = "../nrf-hal-common"
2626
default-features = false
2727
features = ["51"]
28-
version = "=0.12.1"
28+
version = "=0.12.2"
2929

3030
[dependencies.embedded-hal]
3131
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.12.1")]
2+
#![doc(html_root_url = "https://docs.rs/nrf51-hal/0.12.2")]
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.12.1"
3+
version = "0.12.2"
44
edition = "2018"
55
description = "HAL for nRF52810 microcontrollers"
66
readme = "../README.md"
@@ -24,7 +24,7 @@ nrf52810-pac = "0.9.0"
2424
path = "../nrf-hal-common"
2525
default-features = false
2626
features = ["52810"]
27-
version = "=0.12.1"
27+
version = "=0.12.2"
2828

2929
[dependencies.embedded-hal]
3030
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.12.1")]
2+
#![doc(html_root_url = "https://docs.rs/nrf52810-hal/0.12.2")]
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.12.1"
3+
version = "0.12.2"
44
edition = "2018"
55
description = "HAL for nRF52811 microcontrollers"
66
readme = "../README.md"
@@ -24,7 +24,7 @@ nrf52811-pac = "0.9.1"
2424
path = "../nrf-hal-common"
2525
default-features = false
2626
features = ["52811"]
27-
version = "=0.12.1"
27+
version = "=0.12.2"
2828

2929
[dependencies.embedded-hal]
3030
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.12.1")]
2+
#![doc(html_root_url = "https://docs.rs/nrf52811-hal/0.12.2")]
33

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

nrf52832-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 = "nrf52832-hal"
3-
version = "0.12.1"
3+
version = "0.12.2"
44
description = "HAL for nRF52832 microcontrollers"
55
readme = "../README.md"
66

@@ -22,7 +22,7 @@ nrf52832-pac = "0.9.0"
2222
path = "../nrf-hal-common"
2323
default-features = false
2424
features = ["52832"]
25-
version = "=0.12.1"
25+
version = "=0.12.2"
2626

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

0 commit comments

Comments
 (0)