Skip to content

Commit 721137f

Browse files
committed
Prepare for 0.15.1 release.
1 parent 63fa7c2 commit 721137f

File tree

8 files changed

+16
-11
lines changed

8 files changed

+16
-11
lines changed

Diff for: CHANGELOG.md

+7-2
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,11 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](http://keepachangelog.com/)
66
and this project adheres to [Semantic Versioning](http://semver.org/).
77

8-
## [0.15.1] - 2024-07-30
8+
## [Unreleased]
9+
10+
(no changes)
11+
12+
## [0.15.1] - 2024-08-05
913

1014
- Set MSRV for `microbit` and `microbit-v2` crates.
1115
- Bumped MSRV to 1.79.0.
@@ -105,7 +109,8 @@ Republished without changes to fix missing README.md in crates.io.
105109
- Fix rustdoc warnings
106110
- Upgrade nrf51-hal to 0.12.1
107111

108-
[Unreleased]: https://github.com/nrf-rs/microbit/compare/v0.15.0...HEAD
112+
[Unreleased]: https://github.com/nrf-rs/microbit/compare/v0.15.1...HEAD
113+
[0.15.1]: https://github.com/nrf-rs/microbit/compare/v0.15.0...v0.15.1
109114
[0.15.0]: https://github.com/nrf-rs/microbit/compare/v0.14.0...v0.15.0
110115
[0.14.0]: https://github.com/nrf-rs/microbit/compare/v0.13.0...v0.14.0
111116
[0.13.0]: https://github.com/nrf-rs/microbit/compare/v0.12.0...v0.13.0

Diff for: Cargo.lock

+3-3
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Diff for: microbit-common/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "microbit-common"
3-
version = "0.15.0"
3+
version = "0.15.1"
44
description = "Implementation details for the BBC Micro:bit board support crates"
55
edition = "2018"
66
readme = "../README.md"

Diff for: microbit-common/src/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
//! microbit contains everything required to get started with the use of Rust
22
//! to create firmwares for the fabulous [BBC micro:bit](https://microbit.org)
33
//! microcontroller board.
4-
#![doc(html_root_url = "https://docs.rs/microbit-common/0.15.0")]
4+
#![doc(html_root_url = "https://docs.rs/microbit-common/0.15.1")]
55
#![no_std]
66
#![deny(missing_docs)]
77
#![allow(non_camel_case_types)]

Diff for: microbit-v2/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ path = "src/lib.rs"
2525
[dependencies.microbit-common]
2626
path = "../microbit-common"
2727
features = ["v2"]
28-
version = "=0.15.0"
28+
version = "=0.15.1"
2929

3030
[features]
3131
embedded-hal-02 = ["microbit-common/embedded-hal-02"]

Diff for: microbit-v2/src/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
//!
99
//! [<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)
1010
//! [<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.15.0")]
11+
#![doc(html_root_url = "https://docs.rs/microbit-v2/0.15.1")]
1212
#![no_std]
1313
#![deny(missing_docs)]
1414
#![allow(non_camel_case_types)]

Diff for: microbit/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ license = "0BSD"
2121
[dependencies.microbit-common]
2222
path = "../microbit-common"
2323
features = ["v1"]
24-
version = "=0.15.0"
24+
version = "=0.15.1"
2525

2626
[features]
2727
embedded-hal-02 = ["microbit-common/embedded-hal-02"]

Diff for: microbit/src/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
//!
99
//! [<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)
1010
//! [<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.15.0")]
11+
#![doc(html_root_url = "https://docs.rs/microbit/0.15.1")]
1212
#![no_std]
1313
#![deny(missing_docs)]
1414
#![allow(non_camel_case_types)]

0 commit comments

Comments
 (0)