Bumped version to 0.14.0
Signed-off-by: Daniel Egger <daniel@eggers-club.de>
This commit is contained in:
parent
8fa4d3f527
commit
88b9c8fd44
11
CHANGELOG.md
11
CHANGELOG.md
|
@ -7,7 +7,13 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
|
|||
|
||||
## [Unreleased]
|
||||
|
||||
- Updated stm32f0 dependency to v0.7.0 - @jessebraham
|
||||
## [v0.14.0] - 2019-04-25
|
||||
|
||||
### Changed
|
||||
|
||||
- Updated stm32f0 dependency to v0.7.0 (breaking change) - @jessebraham
|
||||
- Bumped cortex-m dependency to ">=0.5.8,<0.7.0" to let user decide version
|
||||
- Bumped cortex-m-rt dependency to v0.6.8
|
||||
|
||||
## [v0.13.0] - 2019-02-06
|
||||
|
||||
|
@ -121,7 +127,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
|
|||
- Updated stm32f0 dependency to v0.5.0.
|
||||
- Interrupt handler to new #[interrupt] attribute
|
||||
|
||||
[Unreleased]: https://github.com/stm32-rs/stm32f0xx-hal/compare/v0.13.0...HEAD
|
||||
[Unreleased]: https://github.com/stm32-rs/stm32f0xx-hal/compare/v0.14.0...HEAD
|
||||
[v0.14.0]: https://github.com/stm32-rs/stm32f0xx-hal/compare/v0.13.0...v0.14.0
|
||||
[v0.13.0]: https://github.com/stm32-rs/stm32f0xx-hal/compare/v0.12.0...v0.13.0
|
||||
[v0.12.0]: https://github.com/stm32-rs/stm32f0xx-hal/compare/v0.11.1...v0.12.0
|
||||
[v0.11.1]: https://github.com/stm32-rs/stm32f0xx-hal/compare/v0.11.0...v0.11.1
|
||||
|
|
|
@ -23,7 +23,7 @@ license = "0BSD"
|
|||
name = "stm32f0xx-hal"
|
||||
readme = "README.md"
|
||||
repository = "https://github.com/stm32-rs/stm32f0xx-hal"
|
||||
version = "0.13.0"
|
||||
version = "0.14.0"
|
||||
|
||||
[package.metadata.docs.rs]
|
||||
features = ["stm32f042", "rt"]
|
||||
|
@ -31,11 +31,11 @@ features = ["stm32f042", "rt"]
|
|||
[dependencies]
|
||||
bare-metal = { version = "0.2.4", features = ["const-fn"] }
|
||||
cast = { version = "0.2.2", default-features = false }
|
||||
cortex-m = "0.5.8"
|
||||
cortex-m-rt = "0.6.7"
|
||||
cortex-m = ">=0.5.8,<0.7.0"
|
||||
cortex-m-rt = "0.6.8"
|
||||
embedded-hal = { version = "0.2.2", features = ["unproven"] }
|
||||
stm32f0 = "0.7.0"
|
||||
nb = "0.1.1"
|
||||
nb = "0.1.2"
|
||||
void = { version = "1.0.2", default-features = false }
|
||||
|
||||
[dev-dependencies]
|
||||
|
|
Loading…
Reference in New Issue