Skip to content

Commit

Permalink
Merge pull request #141 from nrf-rs/release
Browse files Browse the repository at this point in the history
Prepare for 0.14.0 release.
  • Loading branch information
qwandor authored Apr 19, 2024
2 parents ee736f7 + e047133 commit 3d05b0b
Show file tree
Hide file tree
Showing 7 changed files with 14 additions and 9 deletions.
7 changes: 6 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](http://semver.org/).

## [Unreleased]

(no changes)

## [0.14.0] - 2024-04-18

- Fix: non-blocking display on micro:bit V2 could spuriously light LEDs briefly
- Fix the `blocking::Display::set_refresh_rate` calculation for the micro:bit V2
- Double the non-blocking display refresh frequency for the micro:bit V2
Expand Down Expand Up @@ -94,7 +98,8 @@ Republished without changes to fix missing README.md in crates.io.
- Fix rustdoc warnings
- Upgrade nrf51-hal to 0.12.1

[Unreleased]: https://github.com/nrf-rs/microbit/compare/v0.13.0...HEAD
[Unreleased]: https://github.com/nrf-rs/microbit/compare/v0.14.0...HEAD
[0.14.0]: https://github.com/nrf-rs/microbit/compare/v0.13.0...v0.14.0
[0.13.0]: https://github.com/nrf-rs/microbit/compare/v0.12.0...v0.13.0
[0.12.0]: https://github.com/nrf-rs/microbit/compare/v0.11.0...v0.12.0
[0.11.0]: https://github.com/nrf-rs/microbit/compare/v0.10.1...v0.11.0
Expand Down
2 changes: 1 addition & 1 deletion microbit-common/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "microbit-common"
version = "0.13.0"
version = "0.14.0"
description = "Implementation details for the BBC Micro:bit board support crates"
edition = "2018"
readme = "../README.md"
Expand Down
2 changes: 1 addition & 1 deletion microbit-common/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
//! microbit contains everything required to get started with the use of Rust
//! to create firmwares for the fabulous [BBC micro:bit](https://microbit.org)
//! microcontroller board.
#![doc(html_root_url = "https://docs.rs/microbit-common/0.13.0")]
#![doc(html_root_url = "https://docs.rs/microbit-common/0.14.0")]
#![no_std]
#![deny(missing_docs)]
#![allow(non_camel_case_types)]
Expand Down
4 changes: 2 additions & 2 deletions microbit-v2/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "microbit-v2"
version = "0.13.0"
version = "0.14.0"
description = "Board support crate for the BBC Micro:bit V2"
edition = "2018"
readme = "../README.md"
Expand Down Expand Up @@ -33,7 +33,7 @@ path = "src/lib.rs"
[dependencies.microbit-common]
path = "../microbit-common"
features = ["v2"]
version = "=0.13.0"
version = "=0.14.0"

[features]
embedded-hal-02 = ["microbit-common/embedded-hal-02"]
2 changes: 1 addition & 1 deletion microbit-v2/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
//!
//! [<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)
//! [<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)
#![doc(html_root_url = "https://docs.rs/microbit-v2/0.13.0")]
#![doc(html_root_url = "https://docs.rs/microbit-v2/0.14.0")]
#![no_std]
#![deny(missing_docs)]
#![allow(non_camel_case_types)]
Expand Down
4 changes: 2 additions & 2 deletions microbit/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "microbit"
version = "0.13.0"
version = "0.14.0"
description = "Board support crate for the BBC Micro:bit V1"
edition = "2018"
readme = "../README.md"
Expand Down Expand Up @@ -29,7 +29,7 @@ license = "0BSD"
[dependencies.microbit-common]
path = "../microbit-common"
features = ["v1"]
version = "=0.13.0"
version = "=0.14.0"

[features]
embedded-hal-02 = ["microbit-common/embedded-hal-02"]
2 changes: 1 addition & 1 deletion microbit/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
//!
//! [<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)
//! [<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)
#![doc(html_root_url = "https://docs.rs/microbit/0.13.0")]
#![doc(html_root_url = "https://docs.rs/microbit/0.14.0")]
#![no_std]
#![deny(missing_docs)]
#![allow(non_camel_case_types)]
Expand Down

0 comments on commit 3d05b0b

Please sign in to comment.