Skip to content

Commit aae1794

Browse files
Merge #300
300: Publish 0.12.1 r=jonas-schievink a=jonas-schievink bors r+ Co-authored-by: Jonas Schievink <[email protected]>
2 parents b5d6f64 + 1bdce00 commit aae1794

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.1]
8+
9+
### New Features
10+
11+
- nRF9160: Add support for TWIM1-3 ([#273]).
12+
- nRF9160: Add support for WDT ([#283]).
13+
- PPI: Add `clear_fork_task_endpoint` ([#282]).
14+
- Refactor Pin Selection, add `Pin::from_psel_bits` and `Pin::psel_bits` ([#285]).
15+
- SAADC: Support internal `vddhdiv5` channel ([#297]).
16+
- Add an IEEE 802.15.4 radio API ([#143] [#299]).
17+
18+
### Enhancements
19+
20+
- Explain what "sealing" a trait means ([#271]).
21+
- Update `cfg-if` to 1.0 ([#286]).
22+
23+
### Fixes
24+
25+
- Fix TWIM pin selection for nRF52833 ([#274]).
26+
- Return correct error code in UARTE `start_read` ([#280]).
27+
- Fix en-/disabling GPIOTE interrupts for channels ([#278]).
28+
- UARTE: Check rx buf against `EASY_DMA_SIZE` ([#284]).
29+
- SAADC: Clear `events_calibratedone` before calibration ([#298]).
30+
31+
[#143]: https://github.com/nrf-rs/nrf-hal/pull/143
32+
[#271]: https://github.com/nrf-rs/nrf-hal/pull/271
33+
[#273]: https://github.com/nrf-rs/nrf-hal/pull/273
34+
[#274]: https://github.com/nrf-rs/nrf-hal/pull/274
35+
[#278]: https://github.com/nrf-rs/nrf-hal/pull/278
36+
[#280]: https://github.com/nrf-rs/nrf-hal/pull/280
37+
[#282]: https://github.com/nrf-rs/nrf-hal/pull/282
38+
[#283]: https://github.com/nrf-rs/nrf-hal/pull/283
39+
[#284]: https://github.com/nrf-rs/nrf-hal/pull/284
40+
[#285]: https://github.com/nrf-rs/nrf-hal/pull/285
41+
[#286]: https://github.com/nrf-rs/nrf-hal/pull/286
42+
[#297]: https://github.com/nrf-rs/nrf-hal/pull/297
43+
[#298]: https://github.com/nrf-rs/nrf-hal/pull/298
44+
[#299]: https://github.com/nrf-rs/nrf-hal/pull/299
45+
746
## [0.12.0]
847

948
### New Features
@@ -155,3 +194,4 @@ None
155194
[0.11.0]: https://github.com/nrf-rs/nrf-hal/releases/tag/v0.11.0
156195
[0.11.1]: https://github.com/nrf-rs/nrf-hal/releases/tag/v0.11.1
157196
[0.12.0]: https://github.com/nrf-rs/nrf-hal/releases/tag/v0.12.0
197+
[0.12.1]: https://github.com/nrf-rs/nrf-hal/releases/tag/v0.12.1

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.0"
3+
version = "0.12.1"
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.12.0")]
4+
#![doc(html_root_url = "https://docs.rs/nrf-hal-common/0.12.1")]
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.0"
3+
version = "0.12.1"
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.12.0"
26+
version = "=0.12.1"
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.12.0")]
2+
#![doc(html_root_url = "https://docs.rs/nrf51-hal/0.12.1")]
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.0"
3+
version = "0.12.1"
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.12.0"
25+
version = "=0.12.1"
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.12.0")]
2+
#![doc(html_root_url = "https://docs.rs/nrf52810-hal/0.12.1")]
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.0"
3+
version = "0.12.1"
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.12.0"
25+
version = "=0.12.1"
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.12.0")]
2+
#![doc(html_root_url = "https://docs.rs/nrf52811-hal/0.12.1")]
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.0"
3+
version = "0.12.1"
44
description = "HAL for nRF52832 microcontrollers"
55

66
repository = "https://github.com/nrf-rs/nrf-hal"
@@ -21,7 +21,7 @@ nrf52832-pac = "0.9.0"
2121
path = "../nrf-hal-common"
2222
default-features = false
2323
features = ["52832"]
24-
version = "=0.12.0"
24+
version = "=0.12.1"
2525

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

0 commit comments

Comments
 (0)