File tree Expand file tree Collapse file tree 3 files changed +8
-5
lines changed Expand file tree Collapse file tree 3 files changed +8
-5
lines changed Original file line number Diff line number Diff line change @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
7
7
8
8
## [ Unreleased]
9
9
10
+ ## [ v0.18.0] - 2021-11-14
11
+
10
12
### Changed
11
13
12
14
- Updated stm32f0 dependency to v0.13 (breaking change)
@@ -236,7 +238,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
236
238
- Updated stm32f0 dependency to v0.5.0.
237
239
- Interrupt handler to new #[ interrupt] attribute
238
240
239
- [ Unreleased ] : https://github.com/stm32-rs/stm32f0xx-hal/compare/v0.17.1...HEAD
241
+ [ Unreleased ] : https://github.com/stm32-rs/stm32f0xx-hal/compare/v0.18.0...HEAD
242
+ [ v0.18.0 ] : https://github.com/stm32-rs/stm32f0xx-hal/compare/v0.17.1...v0.18.0
240
243
[ v0.17.1 ] : https://github.com/stm32-rs/stm32f0xx-hal/compare/v0.17.0...v0.17.1
241
244
[ v0.17.0 ] : https://github.com/stm32-rs/stm32f0xx-hal/compare/v0.16.0...v0.17.0
242
245
[ v0.16.0 ] : https://github.com/stm32-rs/stm32f0xx-hal/compare/v0.15.2...v0.16.0
Original file line number Diff line number Diff line change @@ -23,7 +23,7 @@ license = "0BSD"
23
23
name = " stm32f0xx-hal"
24
24
readme = " README.md"
25
25
repository = " https://github.com/stm32-rs/stm32f0xx-hal"
26
- version = " 0.17.1 "
26
+ version = " 0.18.0 "
27
27
28
28
[package .metadata .docs .rs ]
29
29
features = [" stm32f042" , " rt" , " stm32-usbd" ]
Original file line number Diff line number Diff line change @@ -42,9 +42,9 @@ $ cargo build --features=stm32f030
42
42
To use stm32f0xx-hal as a dependency in a standalone project the target device feature must be specified in the ` Cargo.toml ` file:
43
43
```
44
44
[dependencies]
45
- cortex-m = "0.6.0 "
46
- cortex-m-rt = "0.6.8 "
47
- stm32f0xx-hal = { version = "0.17 ", features = ["stm32f030"]}
45
+ cortex-m = "0.7 "
46
+ cortex-m-rt = "0.7 "
47
+ stm32f0xx-hal = { version = "0.18 ", features = ["stm32f030"]}
48
48
```
49
49
50
50
If you are unfamiliar with embedded development using Rust, there are a number of fantastic resources available to help.
You can’t perform that action at this time.
0 commit comments