File tree Expand file tree Collapse file tree 3 files changed +12
-8
lines changed Expand file tree Collapse file tree 3 files changed +12
-8
lines changed Original file line number Diff line number Diff line change @@ -7,8 +7,11 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
77
88## [ Unreleased]
99
10+ ## [ v0.8.0] - 2020-04-30
11+
1012### Changed
1113
14+ - [ breaking-change] Updated stm32f4 dependency to v0.11.
1215- Wait 16 cycles after setting prescalers for some clock domains to follow manual.
1316- Fixed ` TIM9 ` ` pclk ` and ` ppre ` .
1417
@@ -211,7 +214,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
211214
212215- Support for stm32f407 and stm32f429.
213216
214- [ Unreleased ] : https://github.com/stm32-rs/stm32f4xx-hal/compare/v0.7.0...HEAD
217+ [ Unreleased ] : https://github.com/stm32-rs/stm32f4xx-hal/compare/v0.8.0...HEAD
218+ [ v0.8.0 ] : https://github.com/stm32-rs/stm32f4xx-hal/compare/v0.7.0...v0.8.0
215219[ v0.7.0 ] : https://github.com/stm32-rs/stm32f4xx-hal/compare/v0.6.0...v0.7.0
216220[ v0.6.0 ] : https://github.com/stm32-rs/stm32f4xx-hal/compare/v0.5.0...v0.6.0
217221[ v0.5.0 ] : https://github.com/stm32-rs/stm32f4xx-hal/compare/v0.4.0...v0.5.0
Original file line number Diff line number Diff line change @@ -19,7 +19,7 @@ license = "0BSD"
1919name = " stm32f4xx-hal"
2020readme = " README.md"
2121repository = " https://github.com/stm32-rs/stm32f4xx-hal"
22- version = " 0.7 .0"
22+ version = " 0.8 .0"
2323
2424[package .metadata .docs .rs ]
2525features = [" stm32f429" , " rt" , " usb_fs" ]
@@ -31,7 +31,7 @@ cortex-m = ">=0.5.8,<0.7"
3131cortex-m-rt = " 0.6.10"
3232nb = " 0.1.2"
3333rand_core = " 0.5.1"
34- stm32f4 = " 0.10.0 "
34+ stm32f4 = " 0.11 "
3535synopsys-usb-otg = { version = " 0.1.0" , features = [" cortex-m" ], optional = true }
3636
3737[dependencies .bare-metal ]
Original file line number Diff line number Diff line change @@ -62,15 +62,15 @@ You also need to add some dependencies to your `Cargo.toml`:
6262
6363``` toml
6464[dependencies ]
65- embedded-hal = " 0.2.3 "
65+ embedded-hal = " 0.2"
6666nb = " 0.1.2"
67- cortex-m = " 0.6.2 "
68- cortex-m-rt = " 0.6.11 "
67+ cortex-m = " 0.6"
68+ cortex-m-rt = " 0.6"
6969# Panic behaviour, see https://crates.io/keywords/panic-impl for alternatives
70- panic-halt = " 0.2.0 "
70+ panic-halt = " 0.2"
7171
7272[dependencies .stm32f4xx-hal ]
73- version = " 0.7 "
73+ version = " 0.8 "
7474features = [" rt" , " stm32f407" ] # replace the model of your microcontroller here
7575```
7676
You can’t perform that action at this time.
0 commit comments