Skip to content

Commit 7623e05

Browse files
bors[bot]Jonas Schievink
andauthored
Merge #388
388: 0.15.1 r=jonas-schievink a=jonas-schievink Co-authored-by: Jonas Schievink <[email protected]>
2 parents 56e2752 + b8f6b89 commit 7623e05

File tree

24 files changed

+53
-34
lines changed

24 files changed

+53
-34
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
thumbv7em-none-eabihf
3434
thumbv8m.main-none-eabi
3535
- name: Build Crates
36-
run: mv Cargo.ci.toml Cargo.toml && cargo test -p xtask
36+
run: mv Cargo.ci.toml Cargo.toml && cargo test
3737
env:
3838
RUSTFLAGS: ${{ matrix.rustflags }}
3939

.gitignore

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ target/
33
[._]*.sw[a-p]
44
**/*.rs.bk
55
Cargo.lock
6-
Cargo.toml
7-
Cargo.my.toml
6+
/Cargo.toml
7+
/Cargo.my.toml
88

99
# Created by https://www.gitignore.io/api/intellij+all
1010

CHANGELOG.md

Lines changed: 20 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,25 @@
22

33
## Unreleased
44

5-
- Fixed the nvmc erase procedure on nRF91 & nRF53 ([#387])
6-
- Added support for the nrf5340-net-core.
5+
(no changes)
6+
7+
## [0.15.1]
8+
9+
### New Features
10+
11+
- Support the nRF5340 Net Core ([#386]).
12+
- Add internal VDD channels for the nRF51 ADC ([#382]).
13+
- Implement `MultiWriteNorFlash` for the nRF9160 ([#383]).
14+
15+
### Fixes
16+
17+
- Fixed the nvmc erase procedure on nRF91 & nRF53 ([#387]).
18+
- Fixed TWIM overruns being reported as `DataNack` errors ([#386]).
19+
20+
[#382]: https://github.com/nrf-rs/nrf-hal/pull/382
21+
[#383]: https://github.com/nrf-rs/nrf-hal/pull/383
22+
[#386]: https://github.com/nrf-rs/nrf-hal/pull/386
23+
[#387]: https://github.com/nrf-rs/nrf-hal/pull/387
724

825
## [0.15.0]
926

@@ -321,3 +338,4 @@ None
321338
[0.14.0]: https://github.com/nrf-rs/nrf-hal/releases/tag/v0.14.0
322339
[0.14.1]: https://github.com/nrf-rs/nrf-hal/releases/tag/v0.14.1
323340
[0.15.0]: https://github.com/nrf-rs/nrf-hal/releases/tag/v0.15.0
341+
[0.15.1]: https://github.com/nrf-rs/nrf-hal/releases/tag/v0.15.1

Cargo.ci.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ members = [
1313
"nrf9160-hal",
1414
"examples/*",
1515
]
16+
default-members = ["xtask"]
1617
exclude = ["examples/.cargo"]
1718

1819
[profile.dev]

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.15.0"
3+
version = "0.15.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.15.0")]
4+
#![doc(html_root_url = "https://docs.rs/nrf-hal-common/0.15.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.15.0"
3+
version = "0.15.1"
44
edition = "2018"
55
description = "HAL for nRF51 microcontrollers"
66
readme = "../README.md"
@@ -25,7 +25,7 @@ nrf51-pac = "0.11.0"
2525
path = "../nrf-hal-common"
2626
default-features = false
2727
features = ["51"]
28-
version = "=0.15.0"
28+
version = "=0.15.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.15.0")]
2+
#![doc(html_root_url = "https://docs.rs/nrf51-hal/0.15.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.15.0"
3+
version = "0.15.1"
44
edition = "2018"
55
description = "HAL for nRF52810 microcontrollers"
66
readme = "../README.md"
@@ -24,7 +24,7 @@ nrf52810-pac = "0.11.0"
2424
path = "../nrf-hal-common"
2525
default-features = false
2626
features = ["52810"]
27-
version = "=0.15.0"
27+
version = "=0.15.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.15.0")]
2+
#![doc(html_root_url = "https://docs.rs/nrf52810-hal/0.15.1")]
33

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

0 commit comments

Comments
 (0)