Skip to content

Commit d646934

Browse files
committed
Fix dependency feature, changelog, remove continue
1 parent cc25df7 commit d646934

File tree

3 files changed

+4
-6
lines changed

3 files changed

+4
-6
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ Republished without changes to fix missing README.md in crates.io.
3636
- Fix rustdoc warnings
3737
- Upgrade nrf51-hal to 0.12.1
3838

39-
[unreleased]: https://github.com/nrf-rs/microbit/compare/v0.10.1...HEAD
39+
[Unreleased]: https://github.com/nrf-rs/microbit/compare/v0.10.1...HEAD
4040
[0.10.1]: https://github.com/nrf-rs/microbit/releases/tag/v0.10.0...v0.10.1
4141
[0.10.0]: https://github.com/nrf-rs/microbit/releases/tag/v0.9.0...v0.10.0
4242
[0.9.0]: https://github.com/nrf-rs/microbit/compare/v0.8.0...v0.9.0

examples/ble-beacon/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ panic-halt = "0.2.0"
1010
defmt-rtt = "0.2.0"
1111
defmt = "0.2.0"
1212
rubble = "0.0.4"
13-
rubble-nrf5x = { version = "0.0.4", default-features = false, features = ["51"] }
13+
rubble-nrf5x = { version = "0.0.4", default-features = false }
1414

1515
[dependencies.microbit]
1616
path = "../../microbit"
@@ -21,7 +21,7 @@ path = "../../microbit-v2"
2121
optional = true
2222

2323
[features]
24-
v1 = ["microbit"]
24+
v1 = ["microbit", "rubble-nrf5x/51"]
2525
v2 = ["microbit-v2"]
2626

2727
default = [

examples/ble-beacon/src/main.rs

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,5 @@ fn main() -> ! {
5858
}
5959
}
6060

61-
loop {
62-
continue;
63-
}
61+
loop {}
6462
}

0 commit comments

Comments
 (0)