Skip to content

Commit

Permalink
Prepare for 0.15.1 release.
Browse files Browse the repository at this point in the history
  • Loading branch information
qwandor committed Aug 5, 2024
1 parent 63fa7c2 commit 721137f
Show file tree
Hide file tree
Showing 8 changed files with 16 additions and 11 deletions.
9 changes: 7 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down Expand Up @@ -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
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.0"
version = "0.15.1"
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.0")]
#![doc(html_root_url = "https://docs.rs/microbit-common/0.15.1")]
#![no_std]
#![deny(missing_docs)]
#![allow(non_camel_case_types)]
Expand Down
2 changes: 1 addition & 1 deletion microbit-v2/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"]
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.0")]
#![doc(html_root_url = "https://docs.rs/microbit-v2/0.15.1")]
#![no_std]
#![deny(missing_docs)]
#![allow(non_camel_case_types)]
Expand Down
2 changes: 1 addition & 1 deletion microbit/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"]
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.0")]
#![doc(html_root_url = "https://docs.rs/microbit/0.15.1")]
#![no_std]
#![deny(missing_docs)]
#![allow(non_camel_case_types)]
Expand Down

0 comments on commit 721137f

Please sign in to comment.