Skip to content

Commit ceb90bb

Browse files
authored
Prepare for 0.16.1 release. (#434)
1 parent be6220d commit ceb90bb

File tree

21 files changed

+52
-29
lines changed

21 files changed

+52
-29
lines changed

CHANGELOG.md

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

55
(no changes)
66

7+
## [0.16.1]
8+
9+
### New features
10+
11+
- Added `is_done` method to `i2s::Transfer` ([#412], [#413])
12+
- Added support for configuring GPIO output drive level ([#424])
13+
14+
### Enhancements
15+
16+
- Fixed README links for `nrf5340-app-hal` and `nrf9160-hal` ([#409])
17+
- Documentation improvements ([#425], [#417], [#394])
18+
- Cleanup to TWIM demo ([#421])
19+
20+
[#394]: https://github.com/nrf-rs/nrf-hal/pull/394
21+
[#409]: https://github.com/nrf-rs/nrf-hal/pull/409
22+
[#412]: https://github.com/nrf-rs/nrf-hal/pull/412
23+
[#413]: https://github.com/nrf-rs/nrf-hal/pull/413
24+
[#417]: https://github.com/nrf-rs/nrf-hal/pull/417
25+
[#421]: https://github.com/nrf-rs/nrf-hal/pull/421
26+
[#424]: https://github.com/nrf-rs/nrf-hal/pull/424
27+
[#425]: https://github.com/nrf-rs/nrf-hal/pull/425
28+
729
## [0.16.0]
830

931
### New Features
@@ -369,3 +391,4 @@ None
369391
[0.15.0]: https://github.com/nrf-rs/nrf-hal/releases/tag/v0.15.0
370392
[0.15.1]: https://github.com/nrf-rs/nrf-hal/releases/tag/v0.15.1
371393
[0.16.0]: https://github.com/nrf-rs/nrf-hal/releases/tag/v0.16.0
394+
[0.16.1]: https://github.com/nrf-rs/nrf-hal/releases/tag/v0.16.1

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

77
use embedded_hal as hal;

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.16.0"
3+
version = "0.16.1"
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.16.0"
28+
version = "=0.16.1"
2929

3030
[dependencies.embedded-hal]
3131
features = ["unproven"]

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

44
use embedded_hal as hal;
55
pub use nrf_hal_common::*;

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.16.0"
3+
version = "0.16.1"
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.16.0"
27+
version = "=0.16.1"
2828

2929
[dependencies.embedded-hal]
3030
features = ["unproven"]

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

44
use embedded_hal as hal;
55
pub use nrf_hal_common::*;

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.16.0"
3+
version = "0.16.1"
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.16.0"
27+
version = "=0.16.1"
2828

2929
[dependencies.embedded-hal]
3030
features = ["unproven"]

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

44
use embedded_hal as hal;
55
pub use nrf_hal_common::*;

nrf52832-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 = "nrf52832-hal"
3-
version = "0.16.0"
3+
version = "0.16.1"
44
description = "HAL for nRF52832 microcontrollers"
55
readme = "../README.md"
66

@@ -22,7 +22,7 @@ nrf52832-pac = "0.12.2"
2222
path = "../nrf-hal-common"
2323
default-features = false
2424
features = ["52832"]
25-
version = "=0.16.0"
25+
version = "=0.16.1"
2626

2727
[dependencies.embedded-hal]
2828
features = ["unproven"]

0 commit comments

Comments
 (0)