Skip to content

Commit 917c181

Browse files
authored
Merge pull request #147 from stm32-rs/release-0.8.0
Release 0.8.0
2 parents 37b7f5c + 7016e4f commit 917c181

File tree

3 files changed

+8
-5
lines changed

3 files changed

+8
-5
lines changed

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.18.0] - 2021-11-14
11+
1012
### Changed
1113

1214
- Updated stm32f0 dependency to v0.13 (breaking change)
@@ -236,7 +238,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
236238
- Updated stm32f0 dependency to v0.5.0.
237239
- Interrupt handler to new #[interrupt] attribute
238240

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
240243
[v0.17.1]: https://github.com/stm32-rs/stm32f0xx-hal/compare/v0.17.0...v0.17.1
241244
[v0.17.0]: https://github.com/stm32-rs/stm32f0xx-hal/compare/v0.16.0...v0.17.0
242245
[v0.16.0]: https://github.com/stm32-rs/stm32f0xx-hal/compare/v0.15.2...v0.16.0

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ license = "0BSD"
2323
name = "stm32f0xx-hal"
2424
readme = "README.md"
2525
repository = "https://github.com/stm32-rs/stm32f0xx-hal"
26-
version = "0.17.1"
26+
version = "0.18.0"
2727

2828
[package.metadata.docs.rs]
2929
features = ["stm32f042", "rt", "stm32-usbd"]

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -42,9 +42,9 @@ $ cargo build --features=stm32f030
4242
To use stm32f0xx-hal as a dependency in a standalone project the target device feature must be specified in the `Cargo.toml` file:
4343
```
4444
[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"]}
4848
```
4949

5050
If you are unfamiliar with embedded development using Rust, there are a number of fantastic resources available to help.

0 commit comments

Comments
 (0)