File tree Expand file tree Collapse file tree 7 files changed +14
-9
lines changed
Expand file tree Collapse file tree 7 files changed +14
-9
lines changed Original file line number Diff line number Diff 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
Original file line number Diff line number Diff line change 11[package ]
22name = " microbit-common"
3- version = " 0.13 .0"
3+ version = " 0.14 .0"
44description = " Implementation details for the BBC Micro:bit board support crates"
55edition = " 2018"
66readme = " ../README.md"
Original file line number Diff line number Diff line change 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) ]
Original file line number Diff line number Diff line change 11[package ]
22name = " microbit-v2"
3- version = " 0.13 .0"
3+ version = " 0.14 .0"
44description = " Board support crate for the BBC Micro:bit V2"
55edition = " 2018"
66readme = " ../README.md"
@@ -33,7 +33,7 @@ path = "src/lib.rs"
3333[dependencies .microbit-common ]
3434path = " ../microbit-common"
3535features = [" v2" ]
36- version = " =0.13 .0"
36+ version = " =0.14 .0"
3737
3838[features ]
3939embedded-hal-02 = [" microbit-common/embedded-hal-02" ]
Original file line number Diff line number Diff line change 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) ]
Original file line number Diff line number Diff line change 11[package ]
22name = " microbit"
3- version = " 0.13 .0"
3+ version = " 0.14 .0"
44description = " Board support crate for the BBC Micro:bit V1"
55edition = " 2018"
66readme = " ../README.md"
@@ -29,7 +29,7 @@ license = "0BSD"
2929[dependencies .microbit-common ]
3030path = " ../microbit-common"
3131features = [" v1" ]
32- version = " =0.13 .0"
32+ version = " =0.14 .0"
3333
3434[features ]
3535embedded-hal-02 = [" microbit-common/embedded-hal-02" ]
Original file line number Diff line number Diff line change 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) ]
You can’t perform that action at this time.
0 commit comments