Skip to content

Commit daff9ee

Browse files
committed
release 0.21
1 parent 6602ddf commit daff9ee

File tree

5 files changed

+18
-14
lines changed

5 files changed

+18
-14
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.20.0-${{ matrix.mcu }}
61+
key: v0.21.0-${{ matrix.mcu }}
6262

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

.github/workflows/clippy.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
on:
22
push:
3-
branches: [ staging, trying, master ]
3+
branches: [staging, trying, master]
44
pull_request:
55

66
name: Clippy check
@@ -17,7 +17,7 @@ jobs:
1717
- name: Cache Dependencies
1818
uses: Swatinem/rust-cache@v2
1919
with:
20-
key: v0.20.0
20+
key: v0.21.0
2121

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

CHANGELOG.md

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

88
## [Unreleased]
99

10+
## [v0.21.0] - 2024-05-30
11+
1012
### Changed
1113

1214
- add trait bound `RegisterBlockImpl` to type `RegisterBlock` associated with `serial::Instance` [#732]
@@ -24,14 +26,15 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
2426
- Prevent starting a new I2C transmission before previous stop finishes [#737]
2527
- Fix complementary output polarity for PWM [#754]
2628

27-
[#684]: https://github.com/stm32-rs/stm32f4xx-hal/pull/684
28-
[#732]: https://github.com/stm32-rs/stm32f4xx-hal/pull/732
29-
[#734]: https://github.com/stm32-rs/stm32f4xx-hal/pull/734
30-
[#736]: https://github.com/stm32-rs/stm32f4xx-hal/pull/736
31-
[#737]: https://github.com/stm32-rs/stm32f4xx-hal/pull/737
32-
[#738]: https://github.com/stm32-rs/stm32f4xx-hal/pull/738
33-
[#746]: https://github.com/stm32-rs/stm32f4xx-hal/pull/746
34-
[#756]: https://github.com/stm32-rs/stm32f4xx-hal/pull/756
29+
[#684]: https://github.com/stm32-rs/stm32f4xx-hal/pull/684
30+
[#732]: https://github.com/stm32-rs/stm32f4xx-hal/pull/732
31+
[#734]: https://github.com/stm32-rs/stm32f4xx-hal/pull/734
32+
[#736]: https://github.com/stm32-rs/stm32f4xx-hal/pull/736
33+
[#737]: https://github.com/stm32-rs/stm32f4xx-hal/pull/737
34+
[#738]: https://github.com/stm32-rs/stm32f4xx-hal/pull/738
35+
[#746]: https://github.com/stm32-rs/stm32f4xx-hal/pull/746
36+
[#754]: https://github.com/stm32-rs/stm32f4xx-hal/pull/754
37+
[#756]: https://github.com/stm32-rs/stm32f4xx-hal/pull/756
3538

3639
## [v0.20.0] - 2024-01-14
3740

@@ -1024,7 +1027,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
10241027

10251028
- Support for stm32f407 and stm32f429.
10261029

1027-
[Unreleased]: https://github.com/stm32-rs/stm32f4xx-hal/compare/v0.20.0...HEAD
1030+
[Unreleased]: https://github.com/stm32-rs/stm32f4xx-hal/compare/v0.21.0...HEAD
1031+
[v0.21.0]: https://github.com/stm32-rs/stm32f4xx-hal/compare/v0.20.0...v0.21.0
10281032
[v0.20.0]: https://github.com/stm32-rs/stm32f4xx-hal/compare/v0.19.0...v0.20.0
10291033
[v0.19.0]: https://github.com/stm32-rs/stm32f4xx-hal/compare/v0.18.0...v0.19.0
10301034
[v0.18.0]: https://github.com/stm32-rs/stm32f4xx-hal/compare/v0.17.1...v0.18.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.20.0"
14+
version = "0.21.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
@@ -96,7 +96,7 @@ cortex-m-rt = "0.7"
9696
panic-halt = "0.2"
9797

9898
[dependencies.stm32f4xx-hal]
99-
version = "0.18.0"
99+
version = "0.21.0"
100100
features = ["stm32f407"] # replace the model of your microcontroller here
101101
# and add other required features
102102
```

0 commit comments

Comments
 (0)