Skip to content

Commit

Permalink
version: 0.5.0 -> 0.5.1
Browse files Browse the repository at this point in the history
  • Loading branch information
newAM authored May 14, 2022
1 parent cf79a73 commit 2c2b082
Show file tree
Hide file tree
Showing 8 changed files with 16 additions and 15 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.5.1] - 2022-05-14
### Added
- Added `Rtc::alarm_{a,b}` to get the alarm value.
- Added `impl From<Alarm> for chrono::NaiveTime`.
Expand Down Expand Up @@ -100,7 +100,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.5.0...HEAD
[Unreleased]: https://github.com/stm32-rs/stm32wlxx-hal/compare/v0.5.1...HEAD
[0.5.1]: https://github.com/stm32-rs/stm32wlxx-hal/compare/v0.5.0...v0.5.1
[0.5.0]: https://github.com/stm32-rs/stm32wlxx-hal/compare/v0.4.1...v0.5.0
[0.4.1]: https://github.com/stm32-rs/stm32wlxx-hal/compare/v0.4.0...v0.4.1
[0.4.0]: https://github.com/stm32-rs/stm32wlxx-hal/compare/v0.3.0...v0.4.0
Expand Down
10 changes: 5 additions & 5 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.5.0"
version = "0.5.1"
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 @@ -10,7 +10,7 @@ readme = "../README.md"
# * BSP READMES
# * lock file
# * CHANGELOG Unreleased (URL and header)
version = "0.5.0"
version = "0.5.1"
authors = ["Alex Martens <[email protected]>"]
edition = "2021"
rust-version = "1.60" # 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.5.0"
version = "0.5.1"
authors = ["Alex Martens <[email protected]>"]
edition = "2021"
rust-version = "1.60"
Expand All @@ -19,7 +19,7 @@ embedded-time = ["stm32wlxx-hal/embedded-time"]
rt = ["stm32wlxx-hal/rt"]

[dependencies.stm32wlxx-hal]
version = "=0.5.0"
version = "=0.5.1"
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.5.0"
version = "0.5.1"
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.5.0"
version = "0.5.1"
authors = ["Alex Martens <[email protected]>"]
edition = "2021"
rust-version = "1.60"
Expand All @@ -21,7 +21,7 @@ stm32wl5x_cm0p = ["stm32wlxx-hal/stm32wl5x_cm0p"]
stm32wl5x_cm4 = ["stm32wlxx-hal/stm32wl5x_cm4"]

[dependencies.stm32wlxx-hal]
version = "=0.5.0"
version = "=0.5.1"
path = "../hal"

[dependencies.defmt]
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.5.0"
version = "0.5.1"
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 2c2b082

Please sign in to comment.