Skip to content

Commit 6c76647

Browse files
committed
v0.16.0
1 parent a317101 commit 6c76647

File tree

4 files changed

+17
-4
lines changed

4 files changed

+17
-4
lines changed

CHANGELOG.md

Lines changed: 14 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,19 @@
22

33
## [Unreleased]
44

5+
## [v0.16.0] 2024-03-12
6+
57
* MSRV increased to Rust 1.66.1 [#473]
8+
* **Breaking** Update `smoltcp` to `0.11.0` (from `0.10.0`) [#484]
9+
* **Breaking** Update `usb-device` to `0.3` (from `0.2.5`) [#469]
10+
* Add support for MIPI DSI peripheral on STM32H747/757 (feature gate `dsi`) [#473]
11+
* qspi: Add `change_back_unchecked` method [#449]
12+
* timers: Add support for TIM23 and TIM24 found on RM0468 parts [#482]
613

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

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

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

@@ -295,7 +301,8 @@
295301
* Upgrade to stm32-rs v0.9.0 (including svd2rust v0.16)
296302
* Started Changelog
297303

298-
[Unreleased]: https://github.com/stm32-rs/stm32h7xx-hal/compare/v0.15.1...HEAD
304+
[Unreleased]: https://github.com/stm32-rs/stm32h7xx-hal/compare/v0.16.0...HEAD
305+
[v0.16.0]: https://github.com/stm32-rs/stm32h7xx-hal/compare/v0.15.1...v0.16.0
299306
[v0.15.1]: https://github.com/stm32-rs/stm32h7xx-hal/compare/v0.15.0...v0.15.1
300307
[v0.15.0]: https://github.com/stm32-rs/stm32h7xx-hal/compare/v0.14.0...v0.15.0
301308
[v0.14.0]: https://github.com/stm32-rs/stm32h7xx-hal/compare/v0.13.1...v0.14.0
@@ -391,7 +398,12 @@
391398
[#429]: https://github.com/stm32-rs/stm32h7xx-hal/pull/429
392399
[#434]: https://github.com/stm32-rs/stm32h7xx-hal/pull/434
393400
[#440]: https://github.com/stm32-rs/stm32h7xx-hal/pull/440
401+
[#449]: https://github.com/stm32-rs/stm32h7xx-hal/pull/449
394402
[#451]: https://github.com/stm32-rs/stm32h7xx-hal/pull/451
395403
[#453]: https://github.com/stm32-rs/stm32h7xx-hal/pull/453
396404
[#456]: https://github.com/stm32-rs/stm32h7xx-hal/pull/456
397405
[#464]: https://github.com/stm32-rs/stm32h7xx-hal/pull/464
406+
[#469]: https://github.com/stm32-rs/stm32h7xx-hal/pull/469
407+
[#473]: https://github.com/stm32-rs/stm32h7xx-hal/pull/473
408+
[#482]: https://github.com/stm32-rs/stm32h7xx-hal/pull/482
409+
[#484]: https://github.com/stm32-rs/stm32h7xx-hal/pull/484

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "stm32h7xx-hal"
3-
version = "0.15.1"
3+
version = "0.16.0"
44
authors = ["Andrew Straw <[email protected]>",
55
"Richard Meadows <[email protected]>",
66
"Henrik Böving <[email protected]>",

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ target device feature must be specified in the `Cargo.toml` file:
7070
[dependencies]
7171
cortex-m = "0.7.4"
7272
cortex-m-rt = "0.7.1"
73-
stm32h7xx-hal = {version = "0.15.1", features = ["stm32h743v","rt"]}
73+
stm32h7xx-hal = {version = "0.16.0", features = ["stm32h743v","rt"]}
7474
```
7575

7676
If you are unfamiliar with embedded development using Rust, there are

src/lib.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@
2727
//! * [Ethernet](crate::ethernet) Feature gate `ethernet`
2828
//! * [USB HS](crate::usb_hs) Feature gate `usb_hs`
2929
//! * [LCD-TFT Display Controller](crate::ltdc) Feature gate `ltdc`
30+
//! * MIPI DSI (STM32H747/757 only) Feature gate `dsi`
3031
//! * [CAN and CAN-FD](crate::can) Feature gate `can`
3132
//!
3233
//! External Memory

0 commit comments

Comments
 (0)