diff --git a/CHANGELOG.md b/CHANGELOG.md index e3f9c12b..d72624ef 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,8 @@ ## [Unreleased] +## [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] @@ -290,7 +292,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.0...HEAD +[Unreleased]: https://github.com/stm32-rs/stm32h7xx-hal/compare/v0.15.1...HEAD +[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 [v0.13.1]: https://github.com/stm32-rs/stm32h7xx-hal/compare/v0.13.0...v0.13.1 diff --git a/Cargo.toml b/Cargo.toml index 050a57eb..9e2370b4 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "stm32h7xx-hal" -version = "0.15.0" +version = "0.15.1" authors = ["Andrew Straw ", "Richard Meadows ", "Henrik Böving ", diff --git a/README.md b/README.md index d7aaae0b..c9535a8f 100644 --- a/README.md +++ b/README.md @@ -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.15.0", features = ["stm32h743v","rt"]} +stm32h7xx-hal = {version = "0.15.1", features = ["stm32h743v","rt"]} ``` If you are unfamiliar with embedded development using Rust, there are