Skip to content

Commit 3d05b0b

Browse files
authored
Merge pull request #141 from nrf-rs/release
Prepare for 0.14.0 release.
2 parents ee736f7 + e047133 commit 3d05b0b

File tree

7 files changed

+14
-9
lines changed

7 files changed

+14
-9
lines changed

CHANGELOG.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
77

88
## [Unreleased]
99

10+
(no changes)
11+
12+
## [0.14.0] - 2024-04-18
13+
1014
- Fix: non-blocking display on micro:bit V2 could spuriously light LEDs briefly
1115
- Fix the `blocking::Display::set_refresh_rate` calculation for the micro:bit V2
1216
- Double the non-blocking display refresh frequency for the micro:bit V2
@@ -94,7 +98,8 @@ Republished without changes to fix missing README.md in crates.io.
9498
- Fix rustdoc warnings
9599
- Upgrade nrf51-hal to 0.12.1
96100

97-
[Unreleased]: https://github.com/nrf-rs/microbit/compare/v0.13.0...HEAD
101+
[Unreleased]: https://github.com/nrf-rs/microbit/compare/v0.14.0...HEAD
102+
[0.14.0]: https://github.com/nrf-rs/microbit/compare/v0.13.0...v0.14.0
98103
[0.13.0]: https://github.com/nrf-rs/microbit/compare/v0.12.0...v0.13.0
99104
[0.12.0]: https://github.com/nrf-rs/microbit/compare/v0.11.0...v0.12.0
100105
[0.11.0]: https://github.com/nrf-rs/microbit/compare/v0.10.1...v0.11.0

microbit-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 = "microbit-common"
3-
version = "0.13.0"
3+
version = "0.14.0"
44
description = "Implementation details for the BBC Micro:bit board support crates"
55
edition = "2018"
66
readme = "../README.md"

microbit-common/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
//! microbit contains everything required to get started with the use of Rust
22
//! to create firmwares for the fabulous [BBC micro:bit](https://microbit.org)
33
//! microcontroller board.
4-
#![doc(html_root_url = "https://docs.rs/microbit-common/0.13.0")]
4+
#![doc(html_root_url = "https://docs.rs/microbit-common/0.14.0")]
55
#![no_std]
66
#![deny(missing_docs)]
77
#![allow(non_camel_case_types)]

microbit-v2/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "microbit-v2"
3-
version = "0.13.0"
3+
version = "0.14.0"
44
description = "Board support crate for the BBC Micro:bit V2"
55
edition = "2018"
66
readme = "../README.md"
@@ -33,7 +33,7 @@ path = "src/lib.rs"
3333
[dependencies.microbit-common]
3434
path = "../microbit-common"
3535
features = ["v2"]
36-
version = "=0.13.0"
36+
version = "=0.14.0"
3737

3838
[features]
3939
embedded-hal-02 = ["microbit-common/embedded-hal-02"]

microbit-v2/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
//!
99
//! [<img src="https://github.com/microbit-foundation/microbit-svg/raw/master/microbit-drawing-back-1-5.png" width="372px" height="300px">](https://github.com/microbit-foundation/microbit-svg/blob/master/microbit-drawing-back-1-5.png)
1010
//! [<img src="https://github.com/microbit-foundation/microbit-svg/raw/master/microbit-drawing-back-2.png" width="372px" height="300px">](https://github.com/microbit-foundation/microbit-svg/blob/master/microbit-drawing-back-2.png)
11-
#![doc(html_root_url = "https://docs.rs/microbit-v2/0.13.0")]
11+
#![doc(html_root_url = "https://docs.rs/microbit-v2/0.14.0")]
1212
#![no_std]
1313
#![deny(missing_docs)]
1414
#![allow(non_camel_case_types)]

microbit/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "microbit"
3-
version = "0.13.0"
3+
version = "0.14.0"
44
description = "Board support crate for the BBC Micro:bit V1"
55
edition = "2018"
66
readme = "../README.md"
@@ -29,7 +29,7 @@ license = "0BSD"
2929
[dependencies.microbit-common]
3030
path = "../microbit-common"
3131
features = ["v1"]
32-
version = "=0.13.0"
32+
version = "=0.14.0"
3333

3434
[features]
3535
embedded-hal-02 = ["microbit-common/embedded-hal-02"]

microbit/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
//!
99
//! [<img src="https://github.com/microbit-foundation/microbit-svg/raw/master/microbit-drawing-back-1-5.png" width="372px" height="300px">](https://github.com/microbit-foundation/microbit-svg/blob/master/microbit-drawing-back-1-5.png)
1010
//! [<img src="https://github.com/microbit-foundation/microbit-svg/raw/master/microbit-drawing-back-2.png" width="372px" height="300px">](https://github.com/microbit-foundation/microbit-svg/blob/master/microbit-drawing-back-2.png)
11-
#![doc(html_root_url = "https://docs.rs/microbit/0.13.0")]
11+
#![doc(html_root_url = "https://docs.rs/microbit/0.14.0")]
1212
#![no_std]
1313
#![deny(missing_docs)]
1414
#![allow(non_camel_case_types)]

0 commit comments

Comments
 (0)