Skip to content

Commit fbdb4d0

Browse files
Merge pull request #210 from nrf-rs/xtask-publish
Implement `cargo xtask bump` for bumping versions
2 parents 748504b + b13a8b2 commit fbdb4d0

File tree

16 files changed

+143
-13
lines changed

16 files changed

+143
-13
lines changed

nrf-hal-common/src/lib.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +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.11.1")]
45
#![no_std]
56

67
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.11.0"
3+
version = "0.11.1"
44
edition = "2018"
55
description = "HAL for nRF51 microcontrollers"
66
repository = "https://github.com/nrf-rs/nrf-hal"
@@ -23,7 +23,7 @@ nrf51 = "0.9.0"
2323
path = "../nrf-hal-common"
2424
default-features = false
2525
features = ["51"]
26-
version = "0.11.0"
26+
version = "=0.11.1"
2727

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

nrf51-hal/src/lib.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
#![no_std]
2+
#![doc(html_root_url = "https://docs.rs/nrf51-hal/0.11.1")]
23

34
use embedded_hal as hal;
45
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.11.0"
3+
version = "0.11.1"
44
edition = "2018"
55
description = "HAL for nRF52810 microcontrollers"
66
repository = "https://github.com/nrf-rs/nrf-hal"
@@ -22,7 +22,7 @@ nrf52810-pac = "0.9.0"
2222
path = "../nrf-hal-common"
2323
default-features = false
2424
features = ["52810"]
25-
version = "0.11.0"
25+
version = "=0.11.1"
2626

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

nrf52810-hal/src/lib.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
#![no_std]
2+
#![doc(html_root_url = "https://docs.rs/nrf52810-hal/0.11.1")]
23

34
use embedded_hal as hal;
45
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.11.0"
3+
version = "0.11.1"
44
description = "HAL for nRF52832 microcontrollers"
55

66
repository = "https://github.com/nrf-rs/nrf-hal"
@@ -21,7 +21,7 @@ nrf52832-pac = "0.9.0"
2121
path = "../nrf-hal-common"
2222
default-features = false
2323
features = ["52832"]
24-
version = "0.11.0"
24+
version = "=0.11.1"
2525

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

nrf52832-hal/src/lib.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
#![no_std]
2+
#![doc(html_root_url = "https://docs.rs/nrf52832-hal/0.11.1")]
23

34
use embedded_hal as hal;
45
pub use nrf_hal_common::*;

nrf52833-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 = "nrf52833-hal"
3-
version = "0.11.0"
3+
version = "0.11.1"
44
description = "HAL for nRF52833 microcontrollers"
55

66
repository = "https://github.com/nrf-rs/nrf-hal"
@@ -24,7 +24,7 @@ nrf52833-pac = "0.9.0"
2424
path = "../nrf-hal-common"
2525
default-features = false
2626
features = ["52833"]
27-
version = "0.11.0"
27+
version = "=0.11.1"
2828

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

nrf52833-hal/src/lib.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
#![no_std]
2+
#![doc(html_root_url = "https://docs.rs/nrf52833-hal/0.11.1")]
23

34
use embedded_hal as hal;
45
pub use nrf_hal_common::*;

nrf52840-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 = "nrf52840-hal"
3-
version = "0.11.0"
3+
version = "0.11.1"
44
description = "HAL for nRF52840 microcontrollers"
55

66
repository = "https://github.com/nrf-rs/nrf-hal"
@@ -23,7 +23,7 @@ nrf52840-pac = "0.9.0"
2323
path = "../nrf-hal-common"
2424
default-features = false
2525
features = ["52840"]
26-
version = "0.11.0"
26+
version = "=0.11.1"
2727

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

0 commit comments

Comments
 (0)