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/).
7
7
8
8
## [ Unreleased]
9
9
10
+ (no changes)
11
+
12
+ ## [ 0.14.0] - 2024-04-18
13
+
10
14
- Fix: non-blocking display on micro: bit V2 could spuriously light LEDs briefly
11
15
- Fix the ` blocking::Display::set_refresh_rate ` calculation for the micro: bit V2
12
16
- 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.
94
98
- Fix rustdoc warnings
95
99
- Upgrade nrf51-hal to 0.12.1
96
100
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
98
103
[ 0.13.0 ] : https://github.com/nrf-rs/microbit/compare/v0.12.0...v0.13.0
99
104
[ 0.12.0 ] : https://github.com/nrf-rs/microbit/compare/v0.11.0...v0.12.0
100
105
[ 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 1
1
[package ]
2
2
name = " microbit-common"
3
- version = " 0.13 .0"
3
+ version = " 0.14 .0"
4
4
description = " Implementation details for the BBC Micro:bit board support crates"
5
5
edition = " 2018"
6
6
readme = " ../README.md"
Original file line number Diff line number Diff line change 1
1
//! microbit contains everything required to get started with the use of Rust
2
2
//! to create firmwares for the fabulous [BBC micro:bit](https://microbit.org)
3
3
//! 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" ) ]
5
5
#![ no_std]
6
6
#![ deny( missing_docs) ]
7
7
#![ allow( non_camel_case_types) ]
Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " microbit-v2"
3
- version = " 0.13 .0"
3
+ version = " 0.14 .0"
4
4
description = " Board support crate for the BBC Micro:bit V2"
5
5
edition = " 2018"
6
6
readme = " ../README.md"
@@ -33,7 +33,7 @@ path = "src/lib.rs"
33
33
[dependencies .microbit-common ]
34
34
path = " ../microbit-common"
35
35
features = [" v2" ]
36
- version = " =0.13 .0"
36
+ version = " =0.14 .0"
37
37
38
38
[features ]
39
39
embedded-hal-02 = [" microbit-common/embedded-hal-02" ]
Original file line number Diff line number Diff line change 8
8
//!
9
9
//! [<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)
10
10
//! [<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" ) ]
12
12
#![ no_std]
13
13
#![ deny( missing_docs) ]
14
14
#![ allow( non_camel_case_types) ]
Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " microbit"
3
- version = " 0.13 .0"
3
+ version = " 0.14 .0"
4
4
description = " Board support crate for the BBC Micro:bit V1"
5
5
edition = " 2018"
6
6
readme = " ../README.md"
@@ -29,7 +29,7 @@ license = "0BSD"
29
29
[dependencies .microbit-common ]
30
30
path = " ../microbit-common"
31
31
features = [" v1" ]
32
- version = " =0.13 .0"
32
+ version = " =0.14 .0"
33
33
34
34
[features ]
35
35
embedded-hal-02 = [" microbit-common/embedded-hal-02" ]
Original file line number Diff line number Diff line change 8
8
//!
9
9
//! [<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)
10
10
//! [<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" ) ]
12
12
#![ no_std]
13
13
#![ deny( missing_docs) ]
14
14
#![ allow( non_camel_case_types) ]
You can’t perform that action at this time.
0 commit comments