Skip to content

Commit f9fabf9

Browse files
authored
Merge pull request #146 from stm32-rs/release-0-8-0
Use stm32f4 v0.11 and release 0.8.0
2 parents 1c72714 + 6290677 commit f9fabf9

File tree

3 files changed

+12
-8
lines changed

3 files changed

+12
-8
lines changed

CHANGELOG.md

+5-1
Original file line numberDiff line numberDiff 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

Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ license = "0BSD"
1919
name = "stm32f4xx-hal"
2020
readme = "README.md"
2121
repository = "https://github.com/stm32-rs/stm32f4xx-hal"
22-
version = "0.7.0"
22+
version = "0.8.0"
2323

2424
[package.metadata.docs.rs]
2525
features = ["stm32f429", "rt", "usb_fs"]
@@ -31,7 +31,7 @@ cortex-m = ">=0.5.8,<0.7"
3131
cortex-m-rt = "0.6.10"
3232
nb = "0.1.2"
3333
rand_core = "0.5.1"
34-
stm32f4 = "0.10.0"
34+
stm32f4 = "0.11"
3535
synopsys-usb-otg = { version = "0.1.0", features = ["cortex-m"], optional = true }
3636

3737
[dependencies.bare-metal]

README.md

+5-5
Original file line numberDiff line numberDiff 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"
6666
nb = "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"
7474
features = ["rt", "stm32f407"] # replace the model of your microcontroller here
7575
```
7676

0 commit comments

Comments
 (0)