diff --git a/CHANGELOG.md b/CHANGELOG.md index 377fd5cb..27617240 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/). ## [Unreleased] +## [v0.22.1] - 2024-11-03 + - Fix pac `defmt` feature - Fix timer interrupt status clear @@ -1085,7 +1087,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/). - Support for stm32f407 and stm32f429. -[Unreleased]: https://github.com/stm32-rs/stm32f4xx-hal/compare/v0.22.0...HEAD +[Unreleased]: https://github.com/stm32-rs/stm32f4xx-hal/compare/v0.22.1...HEAD +[v0.22.1]: https://github.com/stm32-rs/stm32f4xx-hal/compare/v0.22.0...v0.22.1 [v0.22.0]: https://github.com/stm32-rs/stm32f4xx-hal/compare/v0.21.0...v0.22.0 [v0.21.0]: https://github.com/stm32-rs/stm32f4xx-hal/compare/v0.20.0...v0.21.0 [v0.20.0]: https://github.com/stm32-rs/stm32f4xx-hal/compare/v0.19.0...v0.20.0 diff --git a/Cargo.toml b/Cargo.toml index f9b8297b..09b2ff12 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -11,7 +11,7 @@ license = "0BSD" name = "stm32f4xx-hal" readme = "README.md" repository = "https://github.com/stm32-rs/stm32f4xx-hal" -version = "0.22.0" +version = "0.22.1" [package.metadata.docs.rs] features = [ diff --git a/README.md b/README.md index 44bf16fb..9dcd2d11 100644 --- a/README.md +++ b/README.md @@ -97,7 +97,7 @@ cortex-m-rt = "0.7" panic-halt = "0.2" [dependencies.stm32f4xx-hal] -version = "0.22.0" +version = "0.22.1" features = ["stm32f407"] # replace the model of your microcontroller here # and add other required features ```