Skip to content

Commit 4739060

Browse files
committed
bumped version to 0.19.0
1 parent 1c50642 commit 4739060

File tree

23 files changed

+42
-32
lines changed

23 files changed

+42
-32
lines changed

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,15 @@
44

55
(no changes)
66

7+
## [0.19.0]
8+
9+
## [0.19.0]
10+
11+
### Breaking changes
12+
13+
- Updated `embedded-io` to 0.7.1
14+
- Added `core::fmt::Error` implementation to `uarte::Error`.
15+
716
## [0.18.0]
817

918
### Breaking changes
@@ -432,3 +441,4 @@ None
432441
[0.17.0]: https://github.com/nrf-rs/nrf-hal/releases/tag/v0.17.0
433442
[0.17.1]: https://github.com/nrf-rs/nrf-hal/releases/tag/v0.17.1
434443
[0.18.0]: https://github.com/nrf-rs/nrf-hal/releases/tag/v0.18.0
444+
[0.19.0]: https://github.com/nrf-rs/nrf-hal/releases/tag/v0.19.0

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.18.0"
3+
version = "0.19.0"
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
readme = "../README.md"
66

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.18.0")]
4+
#![doc(html_root_url = "https://docs.rs/nrf-hal-common/0.19.0")]
55
#![no_std]
66

77
#[cfg(feature = "rtic-monotonic")]

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.18.0"
3+
version = "0.19.0"
44
edition = "2018"
55
description = "HAL for nRF51 microcontrollers"
66
readme = "../README.md"
@@ -25,7 +25,7 @@ nrf51-pac = "0.12.2"
2525
path = "../nrf-hal-common"
2626
default-features = false
2727
features = ["51"]
28-
version = "=0.18.0"
28+
version = "=0.19.0"
2929

3030
[features]
3131
doc = []

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.18.0")]
2+
#![doc(html_root_url = "https://docs.rs/nrf51-hal/0.19.0")]
33

44
pub use nrf_hal_common::*;
55

nrf52805-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 = "nrf52805-hal"
3-
version = "0.18.0"
3+
version = "0.19.0"
44
edition = "2018"
55
description = "HAL for nRF52805 microcontrollers"
66
readme = "../README.md"
@@ -24,7 +24,7 @@ nrf52805-pac = "0.12.2"
2424
path = "../nrf-hal-common"
2525
default-features = false
2626
features = ["52805"]
27-
version = "=0.18.0"
27+
version = "=0.19.0"
2828

2929
[features]
3030
doc = []

nrf52805-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/nrf52805-hal/0.18.0")]
2+
#![doc(html_root_url = "https://docs.rs/nrf52805-hal/0.19.0")]
33

44
pub use nrf_hal_common::*;
55

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.18.0"
3+
version = "0.19.0"
44
edition = "2018"
55
description = "HAL for nRF52810 microcontrollers"
66
readme = "../README.md"
@@ -24,7 +24,7 @@ nrf52810-pac = "0.12.2"
2424
path = "../nrf-hal-common"
2525
default-features = false
2626
features = ["52810"]
27-
version = "=0.18.0"
27+
version = "=0.19.0"
2828

2929
[features]
3030
doc = []

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.18.0")]
2+
#![doc(html_root_url = "https://docs.rs/nrf52810-hal/0.19.0")]
33

44
pub use nrf_hal_common::*;
55

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.18.0"
3+
version = "0.19.0"
44
edition = "2018"
55
description = "HAL for nRF52811 microcontrollers"
66
readme = "../README.md"
@@ -24,7 +24,7 @@ nrf52811-pac = "0.12.2"
2424
path = "../nrf-hal-common"
2525
default-features = false
2626
features = ["52811"]
27-
version = "=0.18.0"
27+
version = "=0.19.0"
2828

2929
[features]
3030
embedded-hal-02 = ["nrf-hal-common/embedded-hal-02"]

0 commit comments

Comments
 (0)