From 721137f1e176170a32c0e781e9a887c7cff06ef5 Mon Sep 17 00:00:00 2001 From: Andrew Walbran Date: Mon, 5 Aug 2024 11:57:46 +0100 Subject: [PATCH] Prepare for 0.15.1 release. --- CHANGELOG.md | 9 +++++++-- Cargo.lock | 6 +++--- microbit-common/Cargo.toml | 2 +- microbit-common/src/lib.rs | 2 +- microbit-v2/Cargo.toml | 2 +- microbit-v2/src/lib.rs | 2 +- microbit/Cargo.toml | 2 +- microbit/src/lib.rs | 2 +- 8 files changed, 16 insertions(+), 11 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d488b00..b60351e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,7 +5,11 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/) and this project adheres to [Semantic Versioning](http://semver.org/). -## [0.15.1] - 2024-07-30 +## [Unreleased] + +(no changes) + +## [0.15.1] - 2024-08-05 - Set MSRV for `microbit` and `microbit-v2` crates. - Bumped MSRV to 1.79.0. @@ -105,7 +109,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.0...HEAD +[Unreleased]: https://github.com/nrf-rs/microbit/compare/v0.15.1...HEAD +[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 [0.13.0]: https://github.com/nrf-rs/microbit/compare/v0.12.0...v0.13.0 diff --git a/Cargo.lock b/Cargo.lock index 0ec080f..1cff6bf 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -635,14 +635,14 @@ checksum = "78ca9ab1a0babb1e7d5695e3530886289c18cf2f87ec19a575a0abdce112e3a3" [[package]] name = "microbit" -version = "0.15.0" +version = "0.15.1" dependencies = [ "microbit-common", ] [[package]] name = "microbit-common" -version = "0.15.0" +version = "0.15.1" dependencies = [ "embedded-hal 1.0.0", "nrf51-hal", @@ -661,7 +661,7 @@ dependencies = [ [[package]] name = "microbit-v2" -version = "0.15.0" +version = "0.15.1" dependencies = [ "microbit-common", ] diff --git a/microbit-common/Cargo.toml b/microbit-common/Cargo.toml index 535c9a0..bd9736a 100644 --- a/microbit-common/Cargo.toml +++ b/microbit-common/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "microbit-common" -version = "0.15.0" +version = "0.15.1" 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 d855d56..59be0de 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.0")] +#![doc(html_root_url = "https://docs.rs/microbit-common/0.15.1")] #![no_std] #![deny(missing_docs)] #![allow(non_camel_case_types)] diff --git a/microbit-v2/Cargo.toml b/microbit-v2/Cargo.toml index 0ac80c1..78dac60 100644 --- a/microbit-v2/Cargo.toml +++ b/microbit-v2/Cargo.toml @@ -25,7 +25,7 @@ path = "src/lib.rs" [dependencies.microbit-common] path = "../microbit-common" features = ["v2"] -version = "=0.15.0" +version = "=0.15.1" [features] embedded-hal-02 = ["microbit-common/embedded-hal-02"] diff --git a/microbit-v2/src/lib.rs b/microbit-v2/src/lib.rs index 35a2c04..24f8d63 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.0")] +#![doc(html_root_url = "https://docs.rs/microbit-v2/0.15.1")] #![no_std] #![deny(missing_docs)] #![allow(non_camel_case_types)] diff --git a/microbit/Cargo.toml b/microbit/Cargo.toml index 515560e..2db67a1 100644 --- a/microbit/Cargo.toml +++ b/microbit/Cargo.toml @@ -21,7 +21,7 @@ license = "0BSD" [dependencies.microbit-common] path = "../microbit-common" features = ["v1"] -version = "=0.15.0" +version = "=0.15.1" [features] embedded-hal-02 = ["microbit-common/embedded-hal-02"] diff --git a/microbit/src/lib.rs b/microbit/src/lib.rs index d7ed775..d95b8e2 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.0")] +#![doc(html_root_url = "https://docs.rs/microbit/0.15.1")] #![no_std] #![deny(missing_docs)] #![allow(non_camel_case_types)]