From 5ce1b60adc6e74fc4cfeb1165c3e505f25335556 Mon Sep 17 00:00:00 2001 From: Jonas Schievink Date: Mon, 27 Sep 2021 20:41:55 +0200 Subject: [PATCH] 0.14.0 --- CHANGELOG.md | 19 +++++++++++++++++++ nrf-hal-common/Cargo.toml | 2 +- nrf-hal-common/src/lib.rs | 2 +- nrf51-hal/Cargo.toml | 4 ++-- nrf51-hal/src/lib.rs | 2 +- nrf52810-hal/Cargo.toml | 4 ++-- nrf52810-hal/src/lib.rs | 2 +- nrf52811-hal/Cargo.toml | 4 ++-- nrf52811-hal/src/lib.rs | 2 +- nrf52832-hal/Cargo.toml | 4 ++-- nrf52832-hal/src/lib.rs | 2 +- nrf52833-hal/Cargo.toml | 4 ++-- nrf52833-hal/src/lib.rs | 2 +- nrf52840-hal/Cargo.toml | 4 ++-- nrf52840-hal/src/lib.rs | 2 +- nrf9160-hal/Cargo.toml | 4 ++-- nrf9160-hal/src/lib.rs | 2 +- 17 files changed, 42 insertions(+), 23 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 5dc8a04c..d853616e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,24 @@ (no changes) +## [0.14.0] + +### New Features + +- Implement `embedded_hal::serial` traits for UARTE ([#343]). + +### Enhancements + +- Update PACs and other dependencies ([#357]). + +### Fixes + +- IEEE 802.15.4: automatically disable radio after transmission ([#356]). + +[#343]: https://github.com/nrf-rs/nrf-hal/pull/343 +[#356]: https://github.com/nrf-rs/nrf-hal/pull/356 +[#357]: https://github.com/nrf-rs/nrf-hal/pull/357 + ## [0.13.0] ### New Features @@ -265,3 +283,4 @@ None [0.12.1]: https://github.com/nrf-rs/nrf-hal/releases/tag/v0.12.1 [0.12.2]: https://github.com/nrf-rs/nrf-hal/releases/tag/v0.12.2 [0.13.0]: https://github.com/nrf-rs/nrf-hal/releases/tag/v0.13.0 +[0.14.0]: https://github.com/nrf-rs/nrf-hal/releases/tag/v0.14.0 diff --git a/nrf-hal-common/Cargo.toml b/nrf-hal-common/Cargo.toml index 5dd014f4..f4ce48a3 100644 --- a/nrf-hal-common/Cargo.toml +++ b/nrf-hal-common/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "nrf-hal-common" -version = "0.13.0" +version = "0.14.0" description = "Implementation details of the nRF HAL crates. Don't use this directly, use one of the specific HAL crates instead (`nrfXYZ-hal`)." readme = "../README.md" diff --git a/nrf-hal-common/src/lib.rs b/nrf-hal-common/src/lib.rs index 60d1313a..e1423ef7 100644 --- a/nrf-hal-common/src/lib.rs +++ b/nrf-hal-common/src/lib.rs @@ -1,7 +1,7 @@ //! Implementation details of the nRF HAL crates. Don't use this directly, use one of the specific //! HAL crates instead (`nrfXYZ-hal`). -#![doc(html_root_url = "https://docs.rs/nrf-hal-common/0.13.0")] +#![doc(html_root_url = "https://docs.rs/nrf-hal-common/0.14.0")] #![no_std] use embedded_hal as hal; diff --git a/nrf51-hal/Cargo.toml b/nrf51-hal/Cargo.toml index 13b4b276..d63625e3 100644 --- a/nrf51-hal/Cargo.toml +++ b/nrf51-hal/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "nrf51-hal" -version = "0.13.0" +version = "0.14.0" edition = "2018" description = "HAL for nRF51 microcontrollers" readme = "../README.md" @@ -25,7 +25,7 @@ nrf51-pac = "0.10.1" path = "../nrf-hal-common" default-features = false features = ["51"] -version = "=0.13.0" +version = "=0.14.0" [dependencies.embedded-hal] features = ["unproven"] diff --git a/nrf51-hal/src/lib.rs b/nrf51-hal/src/lib.rs index 6dd2b651..9d4c9ff5 100644 --- a/nrf51-hal/src/lib.rs +++ b/nrf51-hal/src/lib.rs @@ -1,5 +1,5 @@ #![no_std] -#![doc(html_root_url = "https://docs.rs/nrf51-hal/0.13.0")] +#![doc(html_root_url = "https://docs.rs/nrf51-hal/0.14.0")] use embedded_hal as hal; pub use nrf_hal_common::*; diff --git a/nrf52810-hal/Cargo.toml b/nrf52810-hal/Cargo.toml index f099a954..1d57cb58 100644 --- a/nrf52810-hal/Cargo.toml +++ b/nrf52810-hal/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "nrf52810-hal" -version = "0.13.0" +version = "0.14.0" edition = "2018" description = "HAL for nRF52810 microcontrollers" readme = "../README.md" @@ -24,7 +24,7 @@ nrf52810-pac = "0.10.1" path = "../nrf-hal-common" default-features = false features = ["52810"] -version = "=0.13.0" +version = "=0.14.0" [dependencies.embedded-hal] features = ["unproven"] diff --git a/nrf52810-hal/src/lib.rs b/nrf52810-hal/src/lib.rs index 17f3afa7..683a7b8a 100644 --- a/nrf52810-hal/src/lib.rs +++ b/nrf52810-hal/src/lib.rs @@ -1,5 +1,5 @@ #![no_std] -#![doc(html_root_url = "https://docs.rs/nrf52810-hal/0.13.0")] +#![doc(html_root_url = "https://docs.rs/nrf52810-hal/0.14.0")] use embedded_hal as hal; pub use nrf_hal_common::*; diff --git a/nrf52811-hal/Cargo.toml b/nrf52811-hal/Cargo.toml index 664b2732..96899e1a 100644 --- a/nrf52811-hal/Cargo.toml +++ b/nrf52811-hal/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "nrf52811-hal" -version = "0.13.0" +version = "0.14.0" edition = "2018" description = "HAL for nRF52811 microcontrollers" readme = "../README.md" @@ -24,7 +24,7 @@ nrf52811-pac = "0.10.1" path = "../nrf-hal-common" default-features = false features = ["52811"] -version = "=0.13.0" +version = "=0.14.0" [dependencies.embedded-hal] features = ["unproven"] diff --git a/nrf52811-hal/src/lib.rs b/nrf52811-hal/src/lib.rs index faca9105..679d1db4 100644 --- a/nrf52811-hal/src/lib.rs +++ b/nrf52811-hal/src/lib.rs @@ -1,5 +1,5 @@ #![no_std] -#![doc(html_root_url = "https://docs.rs/nrf52811-hal/0.13.0")] +#![doc(html_root_url = "https://docs.rs/nrf52811-hal/0.14.0")] use embedded_hal as hal; pub use nrf_hal_common::*; diff --git a/nrf52832-hal/Cargo.toml b/nrf52832-hal/Cargo.toml index 0e21c4bc..4bc6aa0f 100644 --- a/nrf52832-hal/Cargo.toml +++ b/nrf52832-hal/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "nrf52832-hal" -version = "0.13.0" +version = "0.14.0" description = "HAL for nRF52832 microcontrollers" readme = "../README.md" @@ -22,7 +22,7 @@ nrf52832-pac = "0.10.1" path = "../nrf-hal-common" default-features = false features = ["52832"] -version = "=0.13.0" +version = "=0.14.0" [dependencies.embedded-hal] features = ["unproven"] diff --git a/nrf52832-hal/src/lib.rs b/nrf52832-hal/src/lib.rs index c83278ae..54777a84 100644 --- a/nrf52832-hal/src/lib.rs +++ b/nrf52832-hal/src/lib.rs @@ -1,5 +1,5 @@ #![no_std] -#![doc(html_root_url = "https://docs.rs/nrf52832-hal/0.13.0")] +#![doc(html_root_url = "https://docs.rs/nrf52832-hal/0.14.0")] use embedded_hal as hal; pub use nrf_hal_common::*; diff --git a/nrf52833-hal/Cargo.toml b/nrf52833-hal/Cargo.toml index 2115d93c..79ebbeeb 100644 --- a/nrf52833-hal/Cargo.toml +++ b/nrf52833-hal/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "nrf52833-hal" -version = "0.13.0" +version = "0.14.0" description = "HAL for nRF52833 microcontrollers" readme = "../README.md" @@ -25,7 +25,7 @@ nrf52833-pac = "0.10.1" path = "../nrf-hal-common" default-features = false features = ["52833"] -version = "=0.13.0" +version = "=0.14.0" [dependencies.embedded-hal] features = ["unproven"] diff --git a/nrf52833-hal/src/lib.rs b/nrf52833-hal/src/lib.rs index 0cee4aa5..48c47834 100644 --- a/nrf52833-hal/src/lib.rs +++ b/nrf52833-hal/src/lib.rs @@ -1,5 +1,5 @@ #![no_std] -#![doc(html_root_url = "https://docs.rs/nrf52833-hal/0.13.0")] +#![doc(html_root_url = "https://docs.rs/nrf52833-hal/0.14.0")] use embedded_hal as hal; pub use nrf_hal_common::*; diff --git a/nrf52840-hal/Cargo.toml b/nrf52840-hal/Cargo.toml index f36a2fbd..83f38c36 100644 --- a/nrf52840-hal/Cargo.toml +++ b/nrf52840-hal/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "nrf52840-hal" -version = "0.13.0" +version = "0.14.0" description = "HAL for nRF52840 microcontrollers" readme = "../README.md" @@ -24,7 +24,7 @@ nrf52840-pac = "0.10.1" path = "../nrf-hal-common" default-features = false features = ["52840"] -version = "=0.13.0" +version = "=0.14.0" [dependencies.embedded-hal] features = ["unproven"] diff --git a/nrf52840-hal/src/lib.rs b/nrf52840-hal/src/lib.rs index 142e3feb..5f4431ee 100644 --- a/nrf52840-hal/src/lib.rs +++ b/nrf52840-hal/src/lib.rs @@ -1,5 +1,5 @@ #![no_std] -#![doc(html_root_url = "https://docs.rs/nrf52840-hal/0.13.0")] +#![doc(html_root_url = "https://docs.rs/nrf52840-hal/0.14.0")] use embedded_hal as hal; pub use nrf_hal_common::*; diff --git a/nrf9160-hal/Cargo.toml b/nrf9160-hal/Cargo.toml index 8c3c1a5c..4b0e4f70 100644 --- a/nrf9160-hal/Cargo.toml +++ b/nrf9160-hal/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "nrf9160-hal" -version = "0.13.0" +version = "0.14.0" description = "HAL for nRF9160 system-in-package" readme = "../README.md" @@ -21,7 +21,7 @@ nrf9160-pac = "0.10.1" path = "../nrf-hal-common" default-features = false features = ["9160"] -version = "=0.13.0" +version = "=0.14.0" [dependencies.embedded-hal] features = ["unproven"] diff --git a/nrf9160-hal/src/lib.rs b/nrf9160-hal/src/lib.rs index 5ab93f78..a7388db3 100644 --- a/nrf9160-hal/src/lib.rs +++ b/nrf9160-hal/src/lib.rs @@ -1,5 +1,5 @@ #![no_std] -#![doc(html_root_url = "https://docs.rs/nrf9160-hal/0.13.0")] +#![doc(html_root_url = "https://docs.rs/nrf9160-hal/0.14.0")] use embedded_hal as hal; pub use nrf_hal_common::*;