diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 72f75ead..c50f925b 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -58,6 +58,6 @@ jobs: - name: Cache Dependencies uses: Swatinem/rust-cache@v2 with: - key: v0.21.0-${{ matrix.mcu }} + key: v0.22.0-${{ matrix.mcu }} - run: cargo check --features=${{ matrix.mcu }},${{ matrix.features }} --examples diff --git a/.github/workflows/clippy.yml b/.github/workflows/clippy.yml index 097b3341..e91c4c81 100644 --- a/.github/workflows/clippy.yml +++ b/.github/workflows/clippy.yml @@ -17,7 +17,7 @@ jobs: - name: Cache Dependencies uses: Swatinem/rust-cache@v2 with: - key: v0.21.0 + key: v0.22.0 - run: cargo clippy --examples --features=stm32f479,usb_fs,sdio-host,can,i2s,fsmc_lcd,rtic1 diff --git a/CHANGELOG.md b/CHANGELOG.md index db1c5410..2e8bf762 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,10 +7,12 @@ and this project adheres to [Semantic Versioning](http://semver.org/). ## [Unreleased] +## [v0.22.0] - 2024-10-04 + ### Added - - `AnyPin` alias for `ErasedPin` - - `new` constructors for `Input`, `Output`, `Analog` + - `AnyPin` alias for `ErasedPin` [#802] + - `new` constructors for `Input`, `Output`, `Analog` [#802] - Add `f469disc-lcd-test` with color/BER test pattern LCD output [#789] - Port `dsihost` implementation from stm32h7xx-hal [#786] - I2C 10-bit address support for I2c [#772] [#783] @@ -57,6 +59,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/). [#791]: https://github.com/stm32-rs/stm32f4xx-hal/pull/791 [#796]: https://github.com/stm32-rs/stm32f4xx-hal/pull/796 [#798]: https://github.com/stm32-rs/stm32f4xx-hal/pull/798 +[#802]: https://github.com/stm32-rs/stm32f4xx-hal/pull/802 ## [v0.21.0] - 2024-05-30 @@ -1077,7 +1080,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.21.0...HEAD +[Unreleased]: https://github.com/stm32-rs/stm32f4xx-hal/compare/v0.22.0...HEAD +[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 [v0.19.0]: https://github.com/stm32-rs/stm32f4xx-hal/compare/v0.18.0...v0.19.0 diff --git a/Cargo.toml b/Cargo.toml index 0061803a..16a48ee2 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.21.0" +version = "0.22.0" [package.metadata.docs.rs] features = [ diff --git a/README.md b/README.md index 2d52b9e0..44bf16fb 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.21.0" +version = "0.22.0" features = ["stm32f407"] # replace the model of your microcontroller here # and add other required features ```