Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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.16.0] - 2025-10-11

- Remove dead link to microbit Rust on Windows blog post in README.
- Bumped MSRV to 1.81.0.
- Add metadata for docs.rs
Expand Down Expand Up @@ -113,7 +117,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.15.1...HEAD
[Unreleased]: https://github.com/nrf-rs/microbit/compare/v0.16.0...HEAD
[0.16.0]: https://github.com/nrf-rs/microbit/compare/v0.15.1...v0.16.0
[0.15.1]: https://github.com/nrf-rs/microbit/compare/v0.15.0...v0.15.1
[0.15.0]: https://github.com/nrf-rs/microbit/compare/v0.14.0...v0.15.0
[0.14.0]: https://github.com/nrf-rs/microbit/compare/v0.13.0...v0.14.0
Expand Down
6 changes: 3 additions & 3 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

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.15.1"
version = "0.16.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.15.1")]
#![doc(html_root_url = "https://docs.rs/microbit-common/0.16.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.15.1"
version = "0.16.0"
description = "Board support crate for the BBC Micro:bit V2"
edition = "2018"
readme = "../README.md"
Expand All @@ -25,7 +25,7 @@ path = "src/lib.rs"
[dependencies.microbit-common]
path = "../microbit-common"
features = ["v2"]
version = "=0.15.1"
version = "=0.16.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.15.1")]
#![doc(html_root_url = "https://docs.rs/microbit-v2/0.16.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.15.1"
version = "0.16.0"
description = "Board support crate for the BBC Micro:bit V1"
edition = "2018"
readme = "../README.md"
Expand All @@ -21,7 +21,7 @@ license = "0BSD"
[dependencies.microbit-common]
path = "../microbit-common"
features = ["v1"]
version = "=0.15.1"
version = "=0.16.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.15.1")]
#![doc(html_root_url = "https://docs.rs/microbit/0.16.0")]
#![no_std]
#![deny(missing_docs)]
#![allow(non_camel_case_types)]
Expand Down
Loading