Skip to content

Commit 33fab0c

Browse files
committed
release 0.17.0
1 parent 552a9c5 commit 33fab0c

File tree

5 files changed

+8
-5
lines changed

5 files changed

+8
-5
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ jobs:
5555
- name: Cache Dependencies
5656
uses: Swatinem/rust-cache@v2
5757
with:
58-
key: v0.16.0-${{ matrix.mcu }}
58+
key: v0.17.0-${{ matrix.mcu }}
5959

6060
- uses: actions-rs/cargo@v1
6161
with:

.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.16.0
20+
key: v0.17.0
2121

2222
- uses: actions-rs/clippy-check@v1
2323
with:

CHANGELOG.md

Lines changed: 4 additions & 1 deletion
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.17.0] - 2023-07-11
11+
1012
### Changed
1113

1214
- `rcc::Enable`, `rcc::LPEnable` traits, timclk in `Clocks` instead of prescalers [#665]
@@ -914,7 +916,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
914916

915917
- Support for stm32f407 and stm32f429.
916918

917-
[Unreleased]: https://github.com/stm32-rs/stm32f4xx-hal/compare/v0.16.2...HEAD
919+
[Unreleased]: https://github.com/stm32-rs/stm32f4xx-hal/compare/v0.17.0...HEAD
920+
[v0.17.0]: https://github.com/stm32-rs/stm32f4xx-hal/compare/v0.16.2...v0.17.0
918921
[v0.16.2]: https://github.com/stm32-rs/stm32f4xx-hal/compare/v0.16.1...v0.16.2
919922
[v0.16.1]: https://github.com/stm32-rs/stm32f4xx-hal/compare/v0.16.0...v0.16.1
920923
[v0.16.0]: https://github.com/stm32-rs/stm32f4xx-hal/compare/v0.15.0...v0.16.0

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ license = "0BSD"
2020
name = "stm32f4xx-hal"
2121
readme = "README.md"
2222
repository = "https://github.com/stm32-rs/stm32f4xx-hal"
23-
version = "0.16.2"
23+
version = "0.17.0"
2424

2525
[package.metadata.docs.rs]
2626
features = ["stm32f429", "usb_fs", "can", "i2s", "fsmc_lcd", "rtic", "defmt"]

README.md

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

9595
[dependencies.stm32f4xx-hal]
96-
version = "0.16.2"
96+
version = "0.17.0"
9797
features = ["stm32f407"] # replace the model of your microcontroller here
9898
# and add other required features
9999
```

0 commit comments

Comments
 (0)