Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

v0.16.0 #487

Merged
merged 1 commit into from
Mar 12, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 14 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,19 @@

## [Unreleased]

## [v0.16.0] 2024-03-12

* MSRV increased to Rust 1.66.1 [#473]
* **Breaking** Update `smoltcp` to `0.11.0` (from `0.10.0`) [#484]
* **Breaking** Update `usb-device` to `0.3` (from `0.2.5`) [#469]
* Add support for MIPI DSI peripheral on STM32H747/757 (feature gate `dsi`) [#473]
* qspi: Add `change_back_unchecked` method [#449]
* timers: Add support for TIM23 and TIM24 found on RM0468 parts [#482]

## [v0.15.1] 2023-11-03

* Bugfix, usb: On RM0455 and RM0468 parts, PA11/PA12 do not have an alternate function
(AF) for USB. Use `into_analog()` when passing pins to `USB1/2::new` on these parts [#464]
* [breaking] `usb-device` updated to v0.3.0

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

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

[Unreleased]: https://github.com/stm32-rs/stm32h7xx-hal/compare/v0.15.1...HEAD
[Unreleased]: https://github.com/stm32-rs/stm32h7xx-hal/compare/v0.16.0...HEAD
[v0.16.0]: https://github.com/stm32-rs/stm32h7xx-hal/compare/v0.15.1...v0.16.0
[v0.15.1]: https://github.com/stm32-rs/stm32h7xx-hal/compare/v0.15.0...v0.15.1
[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
Expand Down Expand Up @@ -391,7 +398,12 @@
[#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
[#449]: https://github.com/stm32-rs/stm32h7xx-hal/pull/449
[#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
[#464]: https://github.com/stm32-rs/stm32h7xx-hal/pull/464
[#469]: https://github.com/stm32-rs/stm32h7xx-hal/pull/469
[#473]: https://github.com/stm32-rs/stm32h7xx-hal/pull/473
[#482]: https://github.com/stm32-rs/stm32h7xx-hal/pull/482
[#484]: https://github.com/stm32-rs/stm32h7xx-hal/pull/484
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.15.1"
version = "0.16.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 @@ -70,7 +70,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.15.1", features = ["stm32h743v","rt"]}
stm32h7xx-hal = {version = "0.16.0", features = ["stm32h743v","rt"]}
```

If you are unfamiliar with embedded development using Rust, there are
Expand Down
1 change: 1 addition & 0 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@
//! * [Ethernet](crate::ethernet) Feature gate `ethernet`
//! * [USB HS](crate::usb_hs) Feature gate `usb_hs`
//! * [LCD-TFT Display Controller](crate::ltdc) Feature gate `ltdc`
//! * MIPI DSI (STM32H747/757 only) Feature gate `dsi`
//! * [CAN and CAN-FD](crate::can) Feature gate `can`
//!
//! External Memory
Expand Down
Loading