From b86e6e633d870dd1b99445e65576b7b98276c392 Mon Sep 17 00:00:00 2001 From: Andrew Walbran Date: Sat, 11 Oct 2025 20:28:13 +0100 Subject: [PATCH] Prepare for 0.16.0 release. --- CHANGELOG.md | 7 ++++++- Cargo.lock | 6 +++--- microbit-common/Cargo.toml | 2 +- microbit-common/src/lib.rs | 2 +- microbit-v2/Cargo.toml | 4 ++-- microbit-v2/src/lib.rs | 2 +- microbit/Cargo.toml | 4 ++-- microbit/src/lib.rs | 2 +- 8 files changed, 17 insertions(+), 12 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6c485b3..4528076 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 @@ -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 diff --git a/Cargo.lock b/Cargo.lock index 3cc615d..3c201e7 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -652,14 +652,14 @@ checksum = "32a282da65faaf38286cf3be983213fcf1d2e2a58700e808f83f4ea9a4804bc0" [[package]] name = "microbit" -version = "0.15.1" +version = "0.16.0" dependencies = [ "microbit-common", ] [[package]] name = "microbit-common" -version = "0.15.1" +version = "0.16.0" dependencies = [ "embedded-hal 1.0.0", "nrf51-hal", @@ -678,7 +678,7 @@ dependencies = [ [[package]] name = "microbit-v2" -version = "0.15.1" +version = "0.16.0" dependencies = [ "microbit-common", ] diff --git a/microbit-common/Cargo.toml b/microbit-common/Cargo.toml index 85b8982..e733b75 100644 --- a/microbit-common/Cargo.toml +++ b/microbit-common/Cargo.toml @@ -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" diff --git a/microbit-common/src/lib.rs b/microbit-common/src/lib.rs index 59be0de..228b8e8 100644 --- a/microbit-common/src/lib.rs +++ b/microbit-common/src/lib.rs @@ -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)] diff --git a/microbit-v2/Cargo.toml b/microbit-v2/Cargo.toml index 78dac60..cddb0f1 100644 --- a/microbit-v2/Cargo.toml +++ b/microbit-v2/Cargo.toml @@ -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" @@ -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"] diff --git a/microbit-v2/src/lib.rs b/microbit-v2/src/lib.rs index 24f8d63..9e06da5 100644 --- a/microbit-v2/src/lib.rs +++ b/microbit-v2/src/lib.rs @@ -8,7 +8,7 @@ //! //! [](https://github.com/microbit-foundation/microbit-svg/blob/master/microbit-drawing-back-1-5.png) //! [](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)] diff --git a/microbit/Cargo.toml b/microbit/Cargo.toml index 2db67a1..71fb85e 100644 --- a/microbit/Cargo.toml +++ b/microbit/Cargo.toml @@ -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" @@ -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"] diff --git a/microbit/src/lib.rs b/microbit/src/lib.rs index d95b8e2..41d95eb 100644 --- a/microbit/src/lib.rs +++ b/microbit/src/lib.rs @@ -8,7 +8,7 @@ //! //! [](https://github.com/microbit-foundation/microbit-svg/blob/master/microbit-drawing-back-1-5.png) //! [](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)]