From 4ba30c4edd63eeffeda62f8480836d5213a1da5d Mon Sep 17 00:00:00 2001 From: Daniel Egger Date: Fri, 9 Aug 2019 22:55:39 +0200 Subject: [PATCH] Bumped version to 0.15.0 Signed-off-by: Daniel Egger --- CHANGELOG.md | 12 +++++++++++- Cargo.toml | 6 +++--- 2 files changed, 14 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 77bd1bc..f52e89e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,15 @@ and this project adheres to [Semantic Versioning](http://semver.org/). ## [Unreleased] +### Changed + +- Updated stm32f0 dependency to v0.8.0 (breaking change) +- Made blinky example more universal by reducing CS + +### Added + +- Added fancier example moving a resource into an exception handler + ## [v0.14.1] - 2019-06-06 ### Added @@ -137,7 +146,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.14.1...HEAD +[Unreleased]: https://github.com/stm32-rs/stm32f0xx-hal/compare/v0.15.0...HEAD +[v0.15.0]: https://github.com/stm32-rs/stm32f0xx-hal/compare/v0.14.1...v0.15.0 [v0.14.1]: https://github.com/stm32-rs/stm32f0xx-hal/compare/v0.14.0...v0.14.1 [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 diff --git a/Cargo.toml b/Cargo.toml index ac019fc..2c3fed6 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -23,7 +23,7 @@ license = "0BSD" name = "stm32f0xx-hal" readme = "README.md" repository = "https://github.com/stm32-rs/stm32f0xx-hal" -version = "0.14.1" +version = "0.15.0" [package.metadata.docs.rs] features = ["stm32f042", "rt"] @@ -32,9 +32,9 @@ features = ["stm32f042", "rt"] bare-metal = { version = "0.2.4", features = ["const-fn"] } cast = { version = "0.2.2", default-features = false } cortex-m = "0.6.0" -cortex-m-rt = "0.6.8" +cortex-m-rt = "0.6.10" embedded-hal = { version = "0.2.3", features = ["unproven"] } -stm32f0 = "0.7.1" +stm32f0 = "0.8.0" nb = "0.1.2" void = { version = "1.0.2", default-features = false }