Skip to content

Commit

Permalink
version: 0.2.1 -> 0.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
newAM authored Dec 21, 2021
1 parent 3f7a156 commit 3fb9f74
Show file tree
Hide file tree
Showing 8 changed files with 14 additions and 13 deletions.
5 changes: 3 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]
## [0.3.0] - 2021-12-20
### Added
- Added `info::Core::CT` to get the CPU core at compile time.
- Added `info::Core::from_cpuid()` to get the CPU core at runtime.
Expand Down Expand Up @@ -48,7 +48,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

[tweedegolf]: https://github.com/tweedegolf
[stm32-rs]: https://github.com/stm32-rs
[Unreleased]: https://github.com/stm32-rs/stm32wlxx-hal/compare/v0.2.1...HEAD
[Unreleased]: https://github.com/stm32-rs/stm32wlxx-hal/compare/v0.3.0...HEAD
[0.3.0]: https://github.com/stm32-rs/stm32wlxx-hal/compare/v0.2.1...v0.3.0
[0.2.1]: https://github.com/stm32-rs/stm32wlxx-hal/compare/v0.2.0...v0.2.1
[0.2.0]: https://github.com/stm32-rs/stm32wlxx-hal/releases/tag/v0.2.0
[0.1.0]: https://github.com/tweedegolf/stm32wlxx-hal
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 README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ This is still in development, the code that exists today covers basic usage of:

```toml
[dependencies.stm32wlxx-hal]
version = "0.2.1"
version = "0.3.0"
features = [
# use exactly one to match your target hardware
"stm32wl5x_cm0p",
Expand Down
2 changes: 1 addition & 1 deletion hal/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name = "stm32wlxx-hal"
description = "Hardware abstraction layer for the STM32WL series microcontrollers."
readme = "../README.md"

version = "0.2.1" # update BSP versions, BSP HAL depdendency version, README, and BSP READMEs
version = "0.3.0" # update BSP versions, BSP HAL depdendency version, README, and BSP READMEs
authors = ["Alex Martens <[email protected]>"]
edition = "2021"
rust-version = "1.57" # update MSRV in CI, BSPs, and shield in README
Expand Down
4 changes: 2 additions & 2 deletions lora-e5-bsp/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name = "lora-e5-bsp"
description = "Board support package for the seeed LoRa-E5 development kit"
readme = "README.md"

version = "0.2.1"
version = "0.3.0"
authors = ["Alex Martens <[email protected]>"]
edition = "2021"
rust-version = "1.57"
Expand All @@ -19,7 +19,7 @@ embedded-time = ["stm32wlxx-hal/embedded-time"]
rt = ["stm32wlxx-hal/rt"]

[dependencies.stm32wlxx-hal]
version = "=0.2.1"
version = "=0.3.0"
path = "../hal"
features = ["stm32wle5"]

Expand Down
2 changes: 1 addition & 1 deletion lora-e5-bsp/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ This crate extends the [stm32wlxx-hal] with board specific hardware, see that cr

```toml
[dependencies.lora-e5-bsp]
version = "0.2.1"
version = "0.3.0"
features = [
# optional: use the cortex-m-rt interrupt interface
"rt",
Expand Down
4 changes: 2 additions & 2 deletions nucleo-wl55jc-bsp/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name = "nucleo-wl55jc-bsp"
description = "Board support package for the NUCLEO-WL55JC"
readme = "README.md"

version = "0.2.1"
version = "0.3.0"
authors = ["Alex Martens <[email protected]>"]
edition = "2021"
rust-version = "1.57"
Expand All @@ -21,7 +21,7 @@ stm32wl5x_cm0p = ["stm32wlxx-hal/stm32wl5x_cm0p"]
stm32wl5x_cm4 = ["stm32wlxx-hal/stm32wl5x_cm4"]

[dependencies.stm32wlxx-hal]
version = "=0.2.1"
version = "=0.3.0"
path = "../hal"

[dependencies.dfmt]
Expand Down
2 changes: 1 addition & 1 deletion nucleo-wl55jc-bsp/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ This crate extends the [stm32wlxx-hal] with board specific hardware, see that cr

```toml
[dependencies.nucleo-wl55jc-bsp]
version = "0.2.1"
version = "0.3.0"
features = [
# required: build for core 1
# This is future proofing for when the HAL has APIs for core 2
Expand Down

0 comments on commit 3fb9f74

Please sign in to comment.