Skip to content

Commit

Permalink
v0.15.0
Browse files Browse the repository at this point in the history
  • Loading branch information
richardeoin committed Oct 5, 2023
1 parent a15c64f commit 6b014dc
Show file tree
Hide file tree
Showing 3 changed files with 25 additions and 10 deletions.
31 changes: 23 additions & 8 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,14 +1,21 @@
# Changelog

## Unreleased

* remove unused `bitflags` dependency
* bors bot replaced with GH merge queue
* Update `smoltcp` dependency to `0.9.0`
* MSRV increased to 1.65.0
* add `IntoAf` trait to restrict `into_alternate` [#346]
## [Unreleased]

## [v0.15.0] 2023-10-xx

* Remove unused `bitflags` dependency
* Bors bot replaced with GH merge queue
* Update `smoltcp` dependency to `0.10.0` (from `0.8.0`) [#422] [#439]
* Update `embedded-sdmmc` to `0.5` (from `0.4`) [#440]
* Update `fdcan` to `0.2` (from `0.1`) [#440]
* MSRV increased to Rust 1.65.0 [#422]
* Add `IntoAf` trait to restrict `into_alternate` [#346]
* Replace casts of &T to &mut T with `UnsafeCell` [#451]
* pwr: Add VOS0 support for RM0455 parts [#429]
* sdmmc: Introduce `write_blocks` [#453]
* sdmmc-fat: Optimize writing speeds [#456]
* wwdg: Add additional possibility for WWDG1RSTF [#434]

## [v0.14.0] 2023-03-22

Expand Down Expand Up @@ -280,7 +287,8 @@
* Upgrade to stm32-rs v0.9.0 (including svd2rust v0.16)
* Started Changelog

[Unreleased]: https://github.com/stm32-rs/stm32h7xx-hal/compare/v0.14.0...HEAD
[Unreleased]: https://github.com/stm32-rs/stm32h7xx-hal/compare/v0.15.0...HEAD
[v0.15.0]: https://github.com/stm32-rs/stm32h7xx-hal/compare/v0.14.0...v0.15.0
[v0.14.0]: https://github.com/stm32-rs/stm32h7xx-hal/compare/v0.13.1...v0.14.0
[v0.13.1]: https://github.com/stm32-rs/stm32h7xx-hal/compare/v0.13.0...v0.13.1
[v0.13.0]: https://github.com/stm32-rs/stm32h7xx-hal/compare/v0.12.2...v0.13.0
Expand Down Expand Up @@ -369,4 +377,11 @@
[#418]: https://github.com/stm32-rs/stm32h7xx-hal/pull/418
[#419]: https://github.com/stm32-rs/stm32h7xx-hal/pull/419
[#421]: https://github.com/stm32-rs/stm32h7xx-hal/pull/421
[#422]: https://github.com/stm32-rs/stm32h7xx-hal/pull/422
[#426]: https://github.com/stm32-rs/stm32h7xx-hal/pull/426
[#429]: https://github.com/stm32-rs/stm32h7xx-hal/pull/429
[#434]: https://github.com/stm32-rs/stm32h7xx-hal/pull/434
[#440]: https://github.com/stm32-rs/stm32h7xx-hal/pull/440
[#451]: https://github.com/stm32-rs/stm32h7xx-hal/pull/451
[#453]: https://github.com/stm32-rs/stm32h7xx-hal/pull/453
[#456]: https://github.com/stm32-rs/stm32h7xx-hal/pull/456
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "stm32h7xx-hal"
version = "0.14.0"
version = "0.15.0"
authors = ["Andrew Straw <[email protected]>",
"Richard Meadows <[email protected]>",
"Henrik Böving <[email protected]>",
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ target device feature must be specified in the `Cargo.toml` file:
[dependencies]
cortex-m = "0.7.4"
cortex-m-rt = "0.7.1"
stm32h7xx-hal = {version = "0.14.0", features = ["stm32h743v","rt"]}
stm32h7xx-hal = {version = "0.15.0", features = ["stm32h743v","rt"]}
```

If you are unfamiliar with embedded development using Rust, there are
Expand Down

0 comments on commit 6b014dc

Please sign in to comment.