diff --git a/CHANGELOG.md b/CHANGELOG.md index 2de81c67..3faf3edf 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,10 @@ ## Unreleased +(no changes) + +## [0.15.0] + ### New Features - Implement `MultiwriteNorFlash` for nRF52 boards that support it ([#373]). @@ -315,3 +319,4 @@ None [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 [0.14.1]: https://github.com/nrf-rs/nrf-hal/releases/tag/v0.14.1 +[0.15.0]: https://github.com/nrf-rs/nrf-hal/releases/tag/v0.15.0 diff --git a/nrf-hal-common/Cargo.toml b/nrf-hal-common/Cargo.toml index bfb5b198..3e2cd30f 100644 --- a/nrf-hal-common/Cargo.toml +++ b/nrf-hal-common/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "nrf-hal-common" -version = "0.14.1" +version = "0.15.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 67ec421d..100a10fa 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.14.1")] +#![doc(html_root_url = "https://docs.rs/nrf-hal-common/0.15.0")] #![no_std] use embedded_hal as hal; diff --git a/nrf51-hal/Cargo.toml b/nrf51-hal/Cargo.toml index ee8e4fc3..551f4d77 100644 --- a/nrf51-hal/Cargo.toml +++ b/nrf51-hal/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "nrf51-hal" -version = "0.14.1" +version = "0.15.0" edition = "2018" description = "HAL for nRF51 microcontrollers" readme = "../README.md" @@ -25,7 +25,7 @@ nrf51-pac = "0.11.0" path = "../nrf-hal-common" default-features = false features = ["51"] -version = "=0.14.1" +version = "=0.15.0" [dependencies.embedded-hal] features = ["unproven"] diff --git a/nrf51-hal/src/lib.rs b/nrf51-hal/src/lib.rs index dbbfe76f..69880252 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.14.1")] +#![doc(html_root_url = "https://docs.rs/nrf51-hal/0.15.0")] use embedded_hal as hal; pub use nrf_hal_common::*; diff --git a/nrf52810-hal/Cargo.toml b/nrf52810-hal/Cargo.toml index 180e6967..c8e511b4 100644 --- a/nrf52810-hal/Cargo.toml +++ b/nrf52810-hal/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "nrf52810-hal" -version = "0.14.1" +version = "0.15.0" edition = "2018" description = "HAL for nRF52810 microcontrollers" readme = "../README.md" @@ -24,7 +24,7 @@ nrf52810-pac = "0.11.0" path = "../nrf-hal-common" default-features = false features = ["52810"] -version = "=0.14.1" +version = "=0.15.0" [dependencies.embedded-hal] features = ["unproven"] diff --git a/nrf52810-hal/src/lib.rs b/nrf52810-hal/src/lib.rs index cf3bcc4b..e5421857 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.14.1")] +#![doc(html_root_url = "https://docs.rs/nrf52810-hal/0.15.0")] use embedded_hal as hal; pub use nrf_hal_common::*; diff --git a/nrf52811-hal/Cargo.toml b/nrf52811-hal/Cargo.toml index 73f3bc67..5f63ded2 100644 --- a/nrf52811-hal/Cargo.toml +++ b/nrf52811-hal/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "nrf52811-hal" -version = "0.14.1" +version = "0.15.0" edition = "2018" description = "HAL for nRF52811 microcontrollers" readme = "../README.md" @@ -24,7 +24,7 @@ nrf52811-pac = "0.11.0" path = "../nrf-hal-common" default-features = false features = ["52811"] -version = "=0.14.1" +version = "=0.15.0" [dependencies.embedded-hal] features = ["unproven"] diff --git a/nrf52811-hal/src/lib.rs b/nrf52811-hal/src/lib.rs index a33ed553..5da66608 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.14.1")] +#![doc(html_root_url = "https://docs.rs/nrf52811-hal/0.15.0")] use embedded_hal as hal; pub use nrf_hal_common::*; diff --git a/nrf52832-hal/Cargo.toml b/nrf52832-hal/Cargo.toml index 0d95cb05..66f90c4b 100644 --- a/nrf52832-hal/Cargo.toml +++ b/nrf52832-hal/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "nrf52832-hal" -version = "0.14.1" +version = "0.15.0" description = "HAL for nRF52832 microcontrollers" readme = "../README.md" @@ -22,7 +22,7 @@ nrf52832-pac = "0.11.0" path = "../nrf-hal-common" default-features = false features = ["52832"] -version = "=0.14.1" +version = "=0.15.0" [dependencies.embedded-hal] features = ["unproven"] diff --git a/nrf52832-hal/src/lib.rs b/nrf52832-hal/src/lib.rs index ed712e06..767138d8 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.14.1")] +#![doc(html_root_url = "https://docs.rs/nrf52832-hal/0.15.0")] use embedded_hal as hal; pub use nrf_hal_common::*; diff --git a/nrf52833-hal/Cargo.toml b/nrf52833-hal/Cargo.toml index dfa800ce..12fff00d 100644 --- a/nrf52833-hal/Cargo.toml +++ b/nrf52833-hal/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "nrf52833-hal" -version = "0.14.1" +version = "0.15.0" description = "HAL for nRF52833 microcontrollers" readme = "../README.md" @@ -25,7 +25,7 @@ nrf52833-pac = "0.11.0" path = "../nrf-hal-common" default-features = false features = ["52833"] -version = "=0.14.1" +version = "=0.15.0" [dependencies.embedded-hal] features = ["unproven"] diff --git a/nrf52833-hal/src/lib.rs b/nrf52833-hal/src/lib.rs index f2610125..17e36e60 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.14.1")] +#![doc(html_root_url = "https://docs.rs/nrf52833-hal/0.15.0")] use embedded_hal as hal; pub use nrf_hal_common::*; diff --git a/nrf52840-hal/Cargo.toml b/nrf52840-hal/Cargo.toml index ed28d55b..e3586b8c 100644 --- a/nrf52840-hal/Cargo.toml +++ b/nrf52840-hal/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "nrf52840-hal" -version = "0.14.1" +version = "0.15.0" description = "HAL for nRF52840 microcontrollers" readme = "../README.md" @@ -24,7 +24,7 @@ nrf52840-pac = "0.11.0" path = "../nrf-hal-common" default-features = false features = ["52840"] -version = "=0.14.1" +version = "=0.15.0" [dependencies.embedded-hal] features = ["unproven"] diff --git a/nrf52840-hal/src/lib.rs b/nrf52840-hal/src/lib.rs index d93299b9..6bb154b4 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.14.1")] +#![doc(html_root_url = "https://docs.rs/nrf52840-hal/0.15.0")] use embedded_hal as hal; pub use nrf_hal_common::*; diff --git a/nrf5340-app-hal/Cargo.toml b/nrf5340-app-hal/Cargo.toml index 6f87cdbb..f0b65ea5 100644 --- a/nrf5340-app-hal/Cargo.toml +++ b/nrf5340-app-hal/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "nrf5340-app-hal" -version = "0.14.1" +version = "0.15.0" description = "HAL for nRF5340 app SoC" readme = "../README.md" @@ -22,7 +22,7 @@ nrf5340-app-pac = "0.11.0" path = "../nrf-hal-common" default-features = false features = ["5340-app"] -version = "=0.14.1" +version = "=0.15.0" [dependencies.embedded-hal] features = ["unproven"] diff --git a/nrf5340-app-hal/src/lib.rs b/nrf5340-app-hal/src/lib.rs index e17d3b52..eeeb7b82 100644 --- a/nrf5340-app-hal/src/lib.rs +++ b/nrf5340-app-hal/src/lib.rs @@ -1,5 +1,5 @@ #![no_std] -#![doc(html_root_url = "https://docs.rs/nrf5340-app-hal/0.14.1")] +#![doc(html_root_url = "https://docs.rs/nrf5340-app-hal/0.15.0")] use embedded_hal as hal; pub use nrf_hal_common::*; diff --git a/nrf9160-hal/Cargo.toml b/nrf9160-hal/Cargo.toml index 1fdf1dee..dd27d6d5 100644 --- a/nrf9160-hal/Cargo.toml +++ b/nrf9160-hal/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "nrf9160-hal" -version = "0.14.1" +version = "0.15.0" description = "HAL for nRF9160 system-in-package" readme = "../README.md" @@ -21,7 +21,7 @@ nrf9160-pac = "0.11.0" path = "../nrf-hal-common" default-features = false features = ["9160"] -version = "=0.14.1" +version = "=0.15.0" [dependencies.embedded-hal] features = ["unproven"] diff --git a/nrf9160-hal/src/lib.rs b/nrf9160-hal/src/lib.rs index 262df9af..b45a3867 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.14.1")] +#![doc(html_root_url = "https://docs.rs/nrf9160-hal/0.15.0")] use embedded_hal as hal; pub use nrf_hal_common::*;