diff --git a/CHANGELOG.md b/CHANGELOG.md index b8d678fd..d47ab64d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,10 @@ ## Unreleased +(no changes) + +## [0.12.0] + ### New Features - Derive more traits for `gpio::{Level, Port}` ([#185]). @@ -145,3 +149,4 @@ None [#172]: https://github.com/nrf-rs/nrf-hal/pull/172 [0.11.0]: https://github.com/nrf-rs/nrf-hal/releases/tag/v0.11.0 [0.11.1]: https://github.com/nrf-rs/nrf-hal/releases/tag/v0.11.1 +[0.12.0]: https://github.com/nrf-rs/nrf-hal/releases/tag/v0.12.0 diff --git a/examples/wdt-demo/Cargo.toml b/examples/wdt-demo/Cargo.toml index 58d58329..935a1302 100644 --- a/examples/wdt-demo/Cargo.toml +++ b/examples/wdt-demo/Cargo.toml @@ -11,7 +11,7 @@ publish = false cortex-m = "0.6.2" cortex-m-rtic = "0.5.3" rtt-target = {version = "0.2.0", features = ["cortex-m"] } -nrf52840-hal = { version = "0.11", features = ["rt"], path = "../../nrf52840-hal" } +nrf52840-hal = { features = ["rt"], path = "../../nrf52840-hal" } [dependencies.embedded-hal] version = "0.2.3" diff --git a/nrf-hal-common/Cargo.toml b/nrf-hal-common/Cargo.toml index 544a11b2..dede3d05 100644 --- a/nrf-hal-common/Cargo.toml +++ b/nrf-hal-common/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "nrf-hal-common" -version = "0.11.1" +version = "0.12.0" description = "Implementation details of the nRF HAL crates. Don't use this directly, use one of the specific HAL crates instead (`nrfXYZ-hal`)." repository = "https://github.com/nrf-rs/nrf-hal" diff --git a/nrf-hal-common/src/lib.rs b/nrf-hal-common/src/lib.rs index b606041b..e42bcb48 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.11.1")] +#![doc(html_root_url = "https://docs.rs/nrf-hal-common/0.12.0")] #![no_std] use embedded_hal as hal; diff --git a/nrf51-hal/Cargo.toml b/nrf51-hal/Cargo.toml index 8a11a7bc..f928bfb4 100644 --- a/nrf51-hal/Cargo.toml +++ b/nrf51-hal/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "nrf51-hal" -version = "0.11.1" +version = "0.12.0" edition = "2018" description = "HAL for nRF51 microcontrollers" repository = "https://github.com/nrf-rs/nrf-hal" @@ -23,7 +23,7 @@ nrf51 = "0.9.0" path = "../nrf-hal-common" default-features = false features = ["51"] -version = "=0.11.1" +version = "=0.12.0" [dependencies.embedded-hal] features = ["unproven"] diff --git a/nrf51-hal/src/lib.rs b/nrf51-hal/src/lib.rs index 683158df..7170b89e 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.11.1")] +#![doc(html_root_url = "https://docs.rs/nrf51-hal/0.12.0")] use embedded_hal as hal; pub use nrf_hal_common::*; diff --git a/nrf52810-hal/Cargo.toml b/nrf52810-hal/Cargo.toml index 0d5e3413..3e5a8f88 100644 --- a/nrf52810-hal/Cargo.toml +++ b/nrf52810-hal/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "nrf52810-hal" -version = "0.11.1" +version = "0.12.0" edition = "2018" description = "HAL for nRF52810 microcontrollers" repository = "https://github.com/nrf-rs/nrf-hal" @@ -22,7 +22,7 @@ nrf52810-pac = "0.9.0" path = "../nrf-hal-common" default-features = false features = ["52810"] -version = "=0.11.1" +version = "=0.12.0" [dependencies.embedded-hal] features = ["unproven"] diff --git a/nrf52810-hal/src/lib.rs b/nrf52810-hal/src/lib.rs index 2557cf29..0933e94e 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.11.1")] +#![doc(html_root_url = "https://docs.rs/nrf52810-hal/0.12.0")] use embedded_hal as hal; pub use nrf_hal_common::*; diff --git a/nrf52811-hal/Cargo.toml b/nrf52811-hal/Cargo.toml index 9ed4c04c..9e619591 100644 --- a/nrf52811-hal/Cargo.toml +++ b/nrf52811-hal/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "nrf52811-hal" -version = "0.11.1" +version = "0.12.0" edition = "2018" description = "HAL for nRF52811 microcontrollers" repository = "https://github.com/nrf-rs/nrf-hal" @@ -22,7 +22,7 @@ nrf52811-pac = "0.9.1" path = "../nrf-hal-common" default-features = false features = ["52811"] -version = "=0.11.1" +version = "=0.12.0" [dependencies.embedded-hal] features = ["unproven"] diff --git a/nrf52811-hal/src/lib.rs b/nrf52811-hal/src/lib.rs index 105f70dd..7fb646fa 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.11.1")] +#![doc(html_root_url = "https://docs.rs/nrf52811-hal/0.12.0")] use embedded_hal as hal; pub use nrf_hal_common::*; diff --git a/nrf52832-hal/Cargo.toml b/nrf52832-hal/Cargo.toml index 11461be5..9256e0ad 100644 --- a/nrf52832-hal/Cargo.toml +++ b/nrf52832-hal/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "nrf52832-hal" -version = "0.11.1" +version = "0.12.0" description = "HAL for nRF52832 microcontrollers" repository = "https://github.com/nrf-rs/nrf-hal" @@ -21,7 +21,7 @@ nrf52832-pac = "0.9.0" path = "../nrf-hal-common" default-features = false features = ["52832"] -version = "=0.11.1" +version = "=0.12.0" [dependencies.embedded-hal] features = ["unproven"] diff --git a/nrf52832-hal/src/lib.rs b/nrf52832-hal/src/lib.rs index 5af862a7..5d40eae2 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.11.1")] +#![doc(html_root_url = "https://docs.rs/nrf52832-hal/0.12.0")] use embedded_hal as hal; pub use nrf_hal_common::*; diff --git a/nrf52833-hal/Cargo.toml b/nrf52833-hal/Cargo.toml index 2009b89e..10c367ee 100644 --- a/nrf52833-hal/Cargo.toml +++ b/nrf52833-hal/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "nrf52833-hal" -version = "0.11.1" +version = "0.12.0" description = "HAL for nRF52833 microcontrollers" repository = "https://github.com/nrf-rs/nrf-hal" @@ -24,7 +24,7 @@ nrf52833-pac = "0.9.0" path = "../nrf-hal-common" default-features = false features = ["52833"] -version = "=0.11.1" +version = "=0.12.0" [dependencies.embedded-hal] features = ["unproven"] diff --git a/nrf52833-hal/src/lib.rs b/nrf52833-hal/src/lib.rs index 146fa6e8..a30d9c03 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.11.1")] +#![doc(html_root_url = "https://docs.rs/nrf52833-hal/0.12.0")] use embedded_hal as hal; pub use nrf_hal_common::*; diff --git a/nrf52840-hal/Cargo.toml b/nrf52840-hal/Cargo.toml index 00c33f7a..8f4f21fd 100644 --- a/nrf52840-hal/Cargo.toml +++ b/nrf52840-hal/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "nrf52840-hal" -version = "0.11.1" +version = "0.12.0" description = "HAL for nRF52840 microcontrollers" repository = "https://github.com/nrf-rs/nrf-hal" @@ -23,7 +23,7 @@ nrf52840-pac = "0.9.0" path = "../nrf-hal-common" default-features = false features = ["52840"] -version = "=0.11.1" +version = "=0.12.0" [dependencies.embedded-hal] features = ["unproven"] diff --git a/nrf52840-hal/src/lib.rs b/nrf52840-hal/src/lib.rs index 5b74ebf2..43b920a9 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.11.1")] +#![doc(html_root_url = "https://docs.rs/nrf52840-hal/0.12.0")] use embedded_hal as hal; pub use nrf_hal_common::*; diff --git a/nrf9160-hal/Cargo.toml b/nrf9160-hal/Cargo.toml index 8f711ecf..5d6fd4ec 100644 --- a/nrf9160-hal/Cargo.toml +++ b/nrf9160-hal/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "nrf9160-hal" -version = "0.11.1" +version = "0.12.0" description = "HAL for nRF9160 system-in-package" repository = "https://github.com/nrf-rs/nrf-hal" @@ -20,7 +20,7 @@ nrf9160-pac = "0.2.0" path = "../nrf-hal-common" default-features = false features = ["9160"] -version = "=0.11.1" +version = "=0.12.0" [dependencies.embedded-hal] features = ["unproven"] diff --git a/nrf9160-hal/src/lib.rs b/nrf9160-hal/src/lib.rs index af520856..41284e63 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.11.1")] +#![doc(html_root_url = "https://docs.rs/nrf9160-hal/0.12.0")] use embedded_hal as hal; pub use nrf_hal_common::*;