Skip to content

Commit 7bc7ebf

Browse files
authored
version: 0.2.0 -> 0.2.1
1 parent efeedf3 commit 7bc7ebf

File tree

6 files changed

+12
-11
lines changed

6 files changed

+12
-11
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.2.1] - 2021-11-20
88
### Fixed
99
- Fixed timeouts after calling `SubGhz::set_sleep`.
1010

@@ -24,6 +24,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
2424

2525
[tweedegolf]: https://github.com/tweedegolf
2626
[stm32-rs]: https://github.com/stm32-rs
27-
[Unreleased]: https://github.com/stm32-rs/stm32wlxx-hal/compare/v0.2.0...HEAD
27+
[Unreleased]: https://github.com/stm32-rs/stm32wlxx-hal/compare/v0.2.1...HEAD
28+
[0.2.1]: https://github.com/stm32-rs/stm32wlxx-hal/compare/v0.2.0...v0.2.1
2829
[0.2.0]: https://github.com/stm32-rs/stm32wlxx-hal/releases/tag/v0.2.0
2930
[0.1.0]: https://github.com/tweedegolf/stm32wlxx-hal

Cargo.lock

Lines changed: 3 additions & 3 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
@@ -29,7 +29,7 @@ This is still in development, the code that exists today covers basic usage of:
2929

3030
```toml
3131
[dependencies.stm32wlxx-hal]
32-
version = "0.2.0"
32+
version = "0.2.1"
3333
features = [
3434
# use exactly one of the following depending on your target hardware
3535
"stm32wl5x_cm0p",

hal/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name = "stm32wlxx-hal"
33
description = "Hardware abstraction layer for the STM32WL series microcontrollers."
44
readme = "../README.md"
55

6-
version = "0.2.0" # update BSP versions, HAL depdendency version, and README
6+
version = "0.2.1" # update BSP versions, BSP HAL depdendency version, and README
77
authors = ["Alex Martens <[email protected]>"]
88
edition = "2021"
99
rust-version = "1.56" # 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.2.0"
6+
version = "0.2.1"
77
authors = ["Alex Martens <[email protected]>"]
88
edition = "2021"
99
rust-version = "1.56"
@@ -17,6 +17,6 @@ defmt = ["stm32wlxx-hal/defmt"]
1717
rt = ["stm32wlxx-hal/rt"]
1818

1919
[dependencies.stm32wlxx-hal]
20-
version = "=0.2.0"
20+
version = "=0.2.1"
2121
path = "../hal"
2222
features = ["stm32wle5"]

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.2.0"
6+
version = "0.2.1"
77
authors = ["Alex Martens <[email protected]>"]
88
edition = "2021"
99
rust-version = "1.56"
@@ -19,5 +19,5 @@ stm32wl5x_cm4 = ["stm32wlxx-hal/stm32wl5x_cm4"]
1919
stm32wl5x_cm0p = ["stm32wlxx-hal/stm32wl5x_cm0p"]
2020

2121
[dependencies.stm32wlxx-hal]
22-
version = "=0.2.0"
22+
version = "=0.2.1"
2323
path = "../hal"

0 commit comments

Comments
 (0)