Skip to content
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
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
2 changes: 1 addition & 1 deletion .github/workflows/clippy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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

10 changes: 7 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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]
Expand Down Expand Up @@ -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

Expand Down Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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 = [
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
```
Expand Down