Skip to content

Commit 65bbbf1

Browse files
authored
Merge pull request #51 from robyoung/bump-version-to-v0.10.0
Bump version to v0.10.0
2 parents 122cd75 + 796aa3c commit 65bbbf1

File tree

7 files changed

+14
-9
lines changed

7 files changed

+14
-9
lines changed

CHANGELOG.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
77

88
## [Unreleased]
99

10+
(no changes)
11+
12+
## [0.10.0] - 2021-05-13
13+
1014
### Added
1115

1216
- Add support for micro:bit V2. This is a significant change that splits
@@ -26,5 +30,6 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
2630
- Fix rustdoc warnings
2731
- Upgrade nrf51-hal to 0.12.1
2832

29-
[Unreleased]: https://github.com/nrf-rs/microbit/compare/v0.9.0...HEAD
33+
[Unreleased]: https://github.com/nrf-rs/microbit/compare/v0.10.0...HEAD
34+
[0.10.0]: https://github.com/nrf-rs/microbit/releases/tag/v0.9.0...v0.10.0
3035
[0.9.0]: https://github.com/nrf-rs/microbit/compare/v0.8.0...v0.9.0

microbit-common/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "microbit-common"
3-
version = "0.9.0"
3+
version = "0.10.0"
44
description = "Implementation details for the BBC Micro:bit board support crates"
55
edition = "2018"
66

microbit-common/src/lib.rs

Lines changed: 1 addition & 1 deletion
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.9.0")]
4+
#![doc(html_root_url = "https://docs.rs/microbit-common/0.10.0")]
55
#![no_std]
66
#![deny(missing_docs)]
77
#![allow(non_camel_case_types)]

microbit-v2/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "microbit-v2"
3-
version = "0.9.0"
3+
version = "0.10.0"
44
description = "Board support crate for the BBC Micro:bit V2"
55
edition = "2018"
66

@@ -32,4 +32,4 @@ path = "src/lib.rs"
3232
[dependencies.microbit-common]
3333
path = "../microbit-common"
3434
features = ["v2"]
35-
version = "=0.9.0"
35+
version = "=0.10.0"

microbit-v2/src/lib.rs

Lines changed: 1 addition & 1 deletion
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.9.0")]
11+
#![doc(html_root_url = "https://docs.rs/microbit-v2/0.10.0")]
1212
#![no_std]
1313
#![deny(missing_docs)]
1414
#![allow(non_camel_case_types)]

microbit/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "microbit"
3-
version = "0.9.0"
3+
version = "0.10.0"
44
description = "Board support crate for the BBC Micro:bit V1"
55
edition = "2018"
66

@@ -28,4 +28,4 @@ license = "0BSD"
2828
[dependencies.microbit-common]
2929
path = "../microbit-common"
3030
features = ["v1"]
31-
version = "=0.9.0"
31+
version = "=0.10.0"

microbit/src/lib.rs

Lines changed: 1 addition & 1 deletion
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.9.0")]
11+
#![doc(html_root_url = "https://docs.rs/microbit/0.10.0")]
1212
#![no_std]
1313
#![deny(missing_docs)]
1414
#![allow(non_camel_case_types)]

0 commit comments

Comments
 (0)