Skip to content

Commit

Permalink
version: 0.5.1 -> 0.6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
newAM authored Jul 4, 2022
1 parent 15574db commit 03b5a84
Show file tree
Hide file tree
Showing 8 changed files with 15 additions and 14 deletions.
7 changes: 4 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,15 @@ 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.6.0] - 2022-07-04
### Added
- Added `rcc::Lsco` to use the low-speed oscillator output.
- Added `Rtc::calibrate_lp` to calibrate the RTC.
- Added `Rtc::recalibration_pending`.
- Added `Rtc::is_alarm_{a,b}_en`.
- Added methods to utilize ADC oversampling.

## Changed
### Changed
- `Rtc.alarm_{a,b}` returns `Alarm` instead of `Option<Alarm>`.
- Updated `stm32-rs` from `0.14.0` to `0.15.1`.

Expand Down Expand Up @@ -115,7 +115,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.1...HEAD
[Unreleased]: https://github.com/stm32-rs/stm32wlxx-hal/compare/v0.6.0...HEAD
[0.6.0]: https://github.com/stm32-rs/stm32wlxx-hal/compare/v0.5.1...v0.6.0
[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
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.5.1"
version = "0.6.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 @@ -10,7 +10,7 @@ readme = "../README.md"
# * BSP READMES
# * lock file
# * CHANGELOG Unreleased (URL and header)
version = "0.5.1"
version = "0.6.0"
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.1"
version = "0.6.0"
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.1"
version = "=0.6.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.5.1"
version = "0.6.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.5.1"
version = "0.6.0"
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.1"
version = "=0.6.0"
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.1"
version = "0.6.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 03b5a84

Please sign in to comment.