Skip to content

Commit 5bf2d6f

Browse files
committed
version: 0.4.1 -> 0.5.0
1 parent ddcd080 commit 5bf2d6f

File tree

8 files changed

+120
-40
lines changed

8 files changed

+120
-40
lines changed

CHANGELOG.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ All notable changes to this project will be documented in this file.
44
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
55
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66

7-
## [Unreleased]
7+
## [0.5.0] - 2022-05-08
88
### Added
99
- Added `set_sleep_clock` to GPIO ports to enable and disable clocks during sleep.
1010
- Added `subghz::Timeout::saturating_add`.
@@ -94,7 +94,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
9494

9595
[tweedegolf]: https://github.com/tweedegolf
9696
[stm32-rs]: https://github.com/stm32-rs
97-
[Unreleased]: https://github.com/stm32-rs/stm32wlxx-hal/compare/v0.4.1...HEAD
97+
[Unreleased]: https://github.com/stm32-rs/stm32wlxx-hal/compare/v0.5.0...HEAD
98+
[0.4.1]: https://github.com/stm32-rs/stm32wlxx-hal/compare/v0.4.1...v0.5.0
9899
[0.4.1]: https://github.com/stm32-rs/stm32wlxx-hal/compare/v0.4.0...v0.4.1
99100
[0.4.0]: https://github.com/stm32-rs/stm32wlxx-hal/compare/v0.3.0...v0.4.0
100101
[0.3.0]: https://github.com/stm32-rs/stm32wlxx-hal/compare/v0.2.1...v0.3.0

Cargo.lock

Lines changed: 107 additions & 30 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ This is still in development, the code that exists today covers basic usage of:
2828

2929
```toml
3030
[dependencies.stm32wlxx-hal]
31-
version = "0.4.1"
31+
version = "0.5.0"
3232
features = [
3333
# use exactly one to match your target hardware
3434
"stm32wl5x_cm0p",

hal/Cargo.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,8 @@ readme = "../README.md"
99
# * README
1010
# * BSP READMES
1111
# * lock file
12-
version = "0.4.1"
12+
# * CHANGELOG Unreleased (URL and header)
13+
version = "0.5.0"
1314
authors = ["Alex Martens <alex@thinglab.org>"]
1415
edition = "2021"
1516
rust-version = "1.60" # update MSRV in CI, BSPs, and shield in README

lora-e5-bsp/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name = "lora-e5-bsp"
33
description = "Board support package for the seeed LoRa-E5 development kit"
44
readme = "README.md"
55

6-
version = "0.4.1"
6+
version = "0.5.0"
77
authors = ["Alex Martens <alex@thinglab.org>"]
88
edition = "2021"
99
rust-version = "1.60"
@@ -19,7 +19,7 @@ embedded-time = ["stm32wlxx-hal/embedded-time"]
1919
rt = ["stm32wlxx-hal/rt"]
2020

2121
[dependencies.stm32wlxx-hal]
22-
version = "=0.4.1"
22+
version = "=0.5.0"
2323
path = "../hal"
2424
features = ["stm32wle5"]
2525

lora-e5-bsp/README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ This crate extends the [stm32wlxx-hal] with board specific hardware, see that cr
88

99
```toml
1010
[dependencies.lora-e5-bsp]
11-
version = "0.4.0"
11+
version = "0.5.0"
1212
features = [
1313
# optional: use the cortex-m-rt interrupt interface
1414
"rt",
@@ -29,6 +29,7 @@ Check these resources to unlock the board for programming:
2929

3030
* [How to program a LoRa-E5](https://forum.seeedstudio.com/t/how-to-program-a-lora-e5/257491)
3131
* [seeed-lora/LoRa-E5-LoRaWAN-End-Node](https://github.com/seeed-lora/LoRa-E5-LoRaWAN-End-Node#getting-started)
32+
* [stm32wl-unlock](https://github.com/newAM/stm32wl-unlock/)
3233

3334
To flash this board with various rust utilities such as `probe-run`, `cargo-embed`, and `cargo-flash` remove the `--connected-under-reset` flag. This flag is required for the NUCLEO board, but will cause timeout errors with the LoRa-E5 development board.
3435

nucleo-wl55jc-bsp/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name = "nucleo-wl55jc-bsp"
33
description = "Board support package for the NUCLEO-WL55JC"
44
readme = "README.md"
55

6-
version = "0.4.1"
6+
version = "0.5.0"
77
authors = ["Alex Martens <alex@thinglab.org>"]
88
edition = "2021"
99
rust-version = "1.60"
@@ -21,7 +21,7 @@ stm32wl5x_cm0p = ["stm32wlxx-hal/stm32wl5x_cm0p"]
2121
stm32wl5x_cm4 = ["stm32wlxx-hal/stm32wl5x_cm4"]
2222

2323
[dependencies.stm32wlxx-hal]
24-
version = "=0.4.1"
24+
version = "=0.5.0"
2525
path = "../hal"
2626

2727
[dependencies.defmt]

nucleo-wl55jc-bsp/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ This crate extends the [stm32wlxx-hal] with board specific hardware, see that cr
88

99
```toml
1010
[dependencies.nucleo-wl55jc-bsp]
11-
version = "0.4.0"
11+
version = "0.5.0"
1212
features = [
1313
# required: build for core 1
1414
# This is future proofing for when the HAL has APIs for core 2

0 commit comments

Comments
 (0)