Skip to content

Commit be07ba6

Browse files
committed
release 0.22
1 parent e6e42f1 commit be07ba6

File tree

5 files changed

+11
-7
lines changed

5 files changed

+11
-7
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,6 @@ jobs:
5858
- name: Cache Dependencies
5959
uses: Swatinem/rust-cache@v2
6060
with:
61-
key: v0.21.0-${{ matrix.mcu }}
61+
key: v0.22.0-${{ matrix.mcu }}
6262

6363
- run: cargo check --features=${{ matrix.mcu }},${{ matrix.features }} --examples

.github/workflows/clippy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
- name: Cache Dependencies
1818
uses: Swatinem/rust-cache@v2
1919
with:
20-
key: v0.21.0
20+
key: v0.22.0
2121

2222
- run: cargo clippy --examples --features=stm32f479,usb_fs,sdio-host,can,i2s,fsmc_lcd,rtic1
2323

CHANGELOG.md

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,12 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
77

88
## [Unreleased]
99

10+
## [v0.22.0] - 2024-10-04
11+
1012
### Added
1113

12-
- `AnyPin` alias for `ErasedPin`
13-
- `new` constructors for `Input`, `Output`, `Analog`
14+
- `AnyPin` alias for `ErasedPin` [#802]
15+
- `new` constructors for `Input`, `Output`, `Analog` [#802]
1416
- Add `f469disc-lcd-test` with color/BER test pattern LCD output [#789]
1517
- Port `dsihost` implementation from stm32h7xx-hal [#786]
1618
- I2C 10-bit address support for I2c [#772] [#783]
@@ -57,6 +59,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
5759
[#791]: https://github.com/stm32-rs/stm32f4xx-hal/pull/791
5860
[#796]: https://github.com/stm32-rs/stm32f4xx-hal/pull/796
5961
[#798]: https://github.com/stm32-rs/stm32f4xx-hal/pull/798
62+
[#802]: https://github.com/stm32-rs/stm32f4xx-hal/pull/802
6063

6164
## [v0.21.0] - 2024-05-30
6265

@@ -1077,7 +1080,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
10771080

10781081
- Support for stm32f407 and stm32f429.
10791082

1080-
[Unreleased]: https://github.com/stm32-rs/stm32f4xx-hal/compare/v0.21.0...HEAD
1083+
[Unreleased]: https://github.com/stm32-rs/stm32f4xx-hal/compare/v0.22.0...HEAD
1084+
[v0.22.0]: https://github.com/stm32-rs/stm32f4xx-hal/compare/v0.21.0...v0.22.0
10811085
[v0.21.0]: https://github.com/stm32-rs/stm32f4xx-hal/compare/v0.20.0...v0.21.0
10821086
[v0.20.0]: https://github.com/stm32-rs/stm32f4xx-hal/compare/v0.19.0...v0.20.0
10831087
[v0.19.0]: https://github.com/stm32-rs/stm32f4xx-hal/compare/v0.18.0...v0.19.0

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ license = "0BSD"
1111
name = "stm32f4xx-hal"
1212
readme = "README.md"
1313
repository = "https://github.com/stm32-rs/stm32f4xx-hal"
14-
version = "0.21.0"
14+
version = "0.22.0"
1515

1616
[package.metadata.docs.rs]
1717
features = [

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ cortex-m-rt = "0.7"
9797
panic-halt = "0.2"
9898

9999
[dependencies.stm32f4xx-hal]
100-
version = "0.21.0"
100+
version = "0.22.0"
101101
features = ["stm32f407"] # replace the model of your microcontroller here
102102
# and add other required features
103103
```

0 commit comments

Comments
 (0)