diff --git a/CHANGELOG.md b/CHANGELOG.md index 8edce7a4..5dc8a04c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,10 @@ ## Unreleased +(no changes) + +## [0.13.0] + ### New Features - USB support ([#295]). @@ -260,3 +264,4 @@ None [0.12.0]: https://github.com/nrf-rs/nrf-hal/releases/tag/v0.12.0 [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 diff --git a/examples/usb/Cargo.toml b/examples/usb/Cargo.toml index 90fbd95e..0a0a5b59 100644 --- a/examples/usb/Cargo.toml +++ b/examples/usb/Cargo.toml @@ -3,6 +3,7 @@ name = "usb" version = "0.1.0" authors = ["Jonas Schievink "] edition = "2018" +publish = false [dependencies] cortex-m-rt = "0.6.12" @@ -12,6 +13,4 @@ usb-device = "0.2.7" usbd-serial = "0.1.0" [dependencies.nrf52840-hal] -version = "0.12.0" path = "../../nrf52840-hal" - diff --git a/nrf-hal-common/Cargo.toml b/nrf-hal-common/Cargo.toml index 55dae69c..7f9a07fe 100644 --- a/nrf-hal-common/Cargo.toml +++ b/nrf-hal-common/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "nrf-hal-common" -version = "0.12.2" +version = "0.13.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 5f17df32..801bd065 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.12.2")] +#![doc(html_root_url = "https://docs.rs/nrf-hal-common/0.13.0")] #![no_std] use embedded_hal as hal; diff --git a/nrf51-hal/Cargo.toml b/nrf51-hal/Cargo.toml index a40d3001..ab2f1f9f 100644 --- a/nrf51-hal/Cargo.toml +++ b/nrf51-hal/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "nrf51-hal" -version = "0.12.2" +version = "0.13.0" edition = "2018" description = "HAL for nRF51 microcontrollers" readme = "../README.md" @@ -25,7 +25,7 @@ nrf51 = "0.9.0" path = "../nrf-hal-common" default-features = false features = ["51"] -version = "=0.12.2" +version = "=0.13.0" [dependencies.embedded-hal] features = ["unproven"] diff --git a/nrf51-hal/src/lib.rs b/nrf51-hal/src/lib.rs index 94dac8ec..6dd2b651 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.12.2")] +#![doc(html_root_url = "https://docs.rs/nrf51-hal/0.13.0")] use embedded_hal as hal; pub use nrf_hal_common::*; diff --git a/nrf52810-hal/Cargo.toml b/nrf52810-hal/Cargo.toml index 56b53741..612af5d3 100644 --- a/nrf52810-hal/Cargo.toml +++ b/nrf52810-hal/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "nrf52810-hal" -version = "0.12.2" +version = "0.13.0" edition = "2018" description = "HAL for nRF52810 microcontrollers" readme = "../README.md" @@ -24,7 +24,7 @@ nrf52810-pac = "0.9.0" path = "../nrf-hal-common" default-features = false features = ["52810"] -version = "=0.12.2" +version = "=0.13.0" [dependencies.embedded-hal] features = ["unproven"] diff --git a/nrf52810-hal/src/lib.rs b/nrf52810-hal/src/lib.rs index b0ba61ba..17f3afa7 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.12.2")] +#![doc(html_root_url = "https://docs.rs/nrf52810-hal/0.13.0")] use embedded_hal as hal; pub use nrf_hal_common::*; diff --git a/nrf52811-hal/Cargo.toml b/nrf52811-hal/Cargo.toml index f46b3790..cf67d662 100644 --- a/nrf52811-hal/Cargo.toml +++ b/nrf52811-hal/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "nrf52811-hal" -version = "0.12.2" +version = "0.13.0" edition = "2018" description = "HAL for nRF52811 microcontrollers" readme = "../README.md" @@ -24,7 +24,7 @@ nrf52811-pac = "0.9.1" path = "../nrf-hal-common" default-features = false features = ["52811"] -version = "=0.12.2" +version = "=0.13.0" [dependencies.embedded-hal] features = ["unproven"] diff --git a/nrf52811-hal/src/lib.rs b/nrf52811-hal/src/lib.rs index 595f7511..faca9105 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.12.2")] +#![doc(html_root_url = "https://docs.rs/nrf52811-hal/0.13.0")] use embedded_hal as hal; pub use nrf_hal_common::*; diff --git a/nrf52832-hal/Cargo.toml b/nrf52832-hal/Cargo.toml index fd5737eb..66e4b842 100644 --- a/nrf52832-hal/Cargo.toml +++ b/nrf52832-hal/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "nrf52832-hal" -version = "0.12.2" +version = "0.13.0" description = "HAL for nRF52832 microcontrollers" readme = "../README.md" @@ -22,7 +22,7 @@ nrf52832-pac = "0.9.0" path = "../nrf-hal-common" default-features = false features = ["52832"] -version = "=0.12.2" +version = "=0.13.0" [dependencies.embedded-hal] features = ["unproven"] diff --git a/nrf52832-hal/src/lib.rs b/nrf52832-hal/src/lib.rs index 24d6aafe..c83278ae 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.12.2")] +#![doc(html_root_url = "https://docs.rs/nrf52832-hal/0.13.0")] use embedded_hal as hal; pub use nrf_hal_common::*; diff --git a/nrf52833-hal/Cargo.toml b/nrf52833-hal/Cargo.toml index 26e59fb5..aee90b9a 100644 --- a/nrf52833-hal/Cargo.toml +++ b/nrf52833-hal/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "nrf52833-hal" -version = "0.12.2" +version = "0.13.0" description = "HAL for nRF52833 microcontrollers" readme = "../README.md" @@ -25,7 +25,7 @@ nrf52833-pac = "0.9.0" path = "../nrf-hal-common" default-features = false features = ["52833"] -version = "=0.12.2" +version = "=0.13.0" [dependencies.embedded-hal] features = ["unproven"] diff --git a/nrf52833-hal/src/lib.rs b/nrf52833-hal/src/lib.rs index 9a1323f4..0cee4aa5 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.12.2")] +#![doc(html_root_url = "https://docs.rs/nrf52833-hal/0.13.0")] use embedded_hal as hal; pub use nrf_hal_common::*; diff --git a/nrf52840-hal/Cargo.toml b/nrf52840-hal/Cargo.toml index 2464f813..2df28bbd 100644 --- a/nrf52840-hal/Cargo.toml +++ b/nrf52840-hal/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "nrf52840-hal" -version = "0.12.2" +version = "0.13.0" description = "HAL for nRF52840 microcontrollers" readme = "../README.md" @@ -24,7 +24,7 @@ nrf52840-pac = "0.9.0" path = "../nrf-hal-common" default-features = false features = ["52840"] -version = "=0.12.2" +version = "=0.13.0" [dependencies.embedded-hal] features = ["unproven"] diff --git a/nrf52840-hal/src/lib.rs b/nrf52840-hal/src/lib.rs index d33b12ea..142e3feb 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.12.2")] +#![doc(html_root_url = "https://docs.rs/nrf52840-hal/0.13.0")] use embedded_hal as hal; pub use nrf_hal_common::*; diff --git a/nrf9160-hal/Cargo.toml b/nrf9160-hal/Cargo.toml index 57a805f7..62f7495e 100644 --- a/nrf9160-hal/Cargo.toml +++ b/nrf9160-hal/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "nrf9160-hal" -version = "0.12.2" +version = "0.13.0" description = "HAL for nRF9160 system-in-package" readme = "../README.md" @@ -21,7 +21,7 @@ nrf9160-pac = "0.2.0" path = "../nrf-hal-common" default-features = false features = ["9160"] -version = "=0.12.2" +version = "=0.13.0" [dependencies.embedded-hal] features = ["unproven"] diff --git a/nrf9160-hal/src/lib.rs b/nrf9160-hal/src/lib.rs index 10cc1958..5ab93f78 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.12.2")] +#![doc(html_root_url = "https://docs.rs/nrf9160-hal/0.13.0")] use embedded_hal as hal; pub use nrf_hal_common::*;