From ec19771b5684b1087a360b5c1c1b6fd02eee81cc Mon Sep 17 00:00:00 2001 From: Andrey Zgarbul Date: Sat, 25 Apr 2020 18:50:46 +0300 Subject: [PATCH] stm32f1 v0.11 --- CHANGELOG.md | 2 +- Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 08d76d55..8b00bb5e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,7 +9,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/). ### Breaking changes -- Bump `stm32f1` dependency (`0.10.0`) +- Bump `stm32f1` dependency (`0.11.0`) - Make traits `rcc::Enable` and `rcc::Reset` public, but `RccBus` sealed ### Added diff --git a/Cargo.toml b/Cargo.toml index 6c18f71b..7c3b45e0 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -26,7 +26,7 @@ required-features = ["rt"] cortex-m = "0.6.0" nb = "0.1.2" cortex-m-rt = "0.6.8" -stm32f1 = "0.10.0" +stm32f1 = "0.11.0" as-slice = "0.1" [dependencies.void]