Skip to content

Commit

Permalink
version: 0.4.0 -> 0.4.1
Browse files Browse the repository at this point in the history
  • Loading branch information
newAM committed Mar 22, 2022
1 parent 78ed782 commit 1e65be8
Show file tree
Hide file tree
Showing 6 changed files with 15 additions and 11 deletions.
8 changes: 6 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,16 @@ 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.4.1] - 2022-03-22
### Added
- Implement `embedded_hal::PwmPin` for `LpTim`.

### Changed
- Inlined trivial `Rng` methods.

### Fixed
- Fixed UART `clock_hz` methods returning the wrong frequency.

## [0.4.0] - 2022-01-08
### Added
- Added a `is_pending` method to the `gpio::Exti` trait.
Expand Down Expand Up @@ -77,7 +80,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.4.0...HEAD
[Unreleased]: https://github.com/stm32-rs/stm32wlxx-hal/compare/v0.4.1...HEAD
[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
[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
Expand Down
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.4.0"
version = "0.4.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 @@ -9,7 +9,7 @@ readme = "../README.md"
# * README
# * BSP READMES
# * lock file
version = "0.4.0"
version = "0.4.1"
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.4.0"
version = "0.4.1"
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.4.0"
version = "=0.4.1"
path = "../hal"
features = ["stm32wle5"]

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.4.0"
version = "0.4.1"
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.4.0"
version = "=0.4.1"
path = "../hal"

[dependencies.dfmt]
Expand Down

0 comments on commit 1e65be8

Please sign in to comment.