Skip to content

Commit 23dd28d

Browse files
committed
Release new minor version 0.4.0 due to bumped cortex-m dependency
Signed-off-by: Daniel Egger <daniel@eggers-club.de>
1 parent 99d0fbb commit 23dd28d

File tree

2 files changed

+11
-4
lines changed

2 files changed

+11
-4
lines changed

CHANGELOG.md

+8-1
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.4.0] - 2019-04-12
11+
1012
### Added
1113

1214
- API to enable and disable SPI interrupts
@@ -17,6 +19,10 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
1719

1820
- Implement reading the device electronic signature from flash
1921

22+
### Changed
23+
24+
- [breaking-change] Updated cortex-m dependency to v0.6.0.
25+
2026
## [v0.3.0] - 2019-01-14
2127

2228
### Added
@@ -157,7 +163,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
157163

158164
- Support for stm32f407 and stm32f429.
159165

160-
[Unreleased]: https://github.com/stm32-rs/stm32f4xx-hal/compare/v0.3.0...HEAD
166+
[Unreleased]: https://github.com/stm32-rs/stm32f4xx-hal/compare/v0.4.0...HEAD
167+
[v0.4.0]: https://github.com/stm32-rs/stm32f4xx-hal/compare/v0.3.0...v0.4.0
161168
[v0.3.0]: https://github.com/stm32-rs/stm32f4xx-hal/compare/v0.2.8...v0.3.0
162169
[v0.2.8]: https://github.com/stm32-rs/stm32f4xx-hal/compare/v0.2.7...v0.2.8
163170
[v0.2.7]: https://github.com/stm32-rs/stm32f4xx-hal/compare/v0.2.6...v0.2.7

Cargo.toml

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

2424
[package.metadata.docs.rs]
2525
features = ["stm32f429", "rt"]
2626

2727
[dependencies]
28-
cortex-m = "0.5.8"
29-
cortex-m-rt = "0.6.7"
28+
cortex-m = "0.6.0"
29+
cortex-m-rt = "0.6.8"
3030
nb = "0.1.1"
3131
stm32f4 = "0.6.0"
3232

0 commit comments

Comments
 (0)