Skip to content

Commit 82056db

Browse files
Merge #346
346: 0.13.0 r=jonas-schievink a=jonas-schievink bors r+ Co-authored-by: Jonas Schievink <[email protected]>
2 parents f336a2a + 8777e97 commit 82056db

File tree

18 files changed

+29
-25
lines changed

18 files changed

+29
-25
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22

33
## Unreleased
44

5+
(no changes)
6+
7+
## [0.13.0]
8+
59
### New Features
610

711
- USB support ([#295]).
@@ -260,3 +264,4 @@ None
260264
[0.12.0]: https://github.com/nrf-rs/nrf-hal/releases/tag/v0.12.0
261265
[0.12.1]: https://github.com/nrf-rs/nrf-hal/releases/tag/v0.12.1
262266
[0.12.2]: https://github.com/nrf-rs/nrf-hal/releases/tag/v0.12.2
267+
[0.13.0]: https://github.com/nrf-rs/nrf-hal/releases/tag/v0.13.0

examples/usb/Cargo.toml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ name = "usb"
33
version = "0.1.0"
44
authors = ["Jonas Schievink <[email protected]>"]
55
edition = "2018"
6+
publish = false
67

78
[dependencies]
89
cortex-m-rt = "0.6.12"
@@ -12,6 +13,4 @@ usb-device = "0.2.7"
1213
usbd-serial = "0.1.0"
1314

1415
[dependencies.nrf52840-hal]
15-
version = "0.12.0"
1616
path = "../../nrf52840-hal"
17-

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

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

0 commit comments

Comments
 (0)