From 71742c7f325c7f86cf75968934f9caa07e7aea6e Mon Sep 17 00:00:00 2001 From: TheZoq2 Date: Thu, 25 Jun 2020 18:12:01 +0200 Subject: [PATCH] Remove deprecated PAC aliases --- CHANGELOG.md | 4 ++++ src/lib.rs | 8 -------- 2 files changed, 4 insertions(+), 8 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 7ddf62ca..114139d3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](http://semver.org/). ## [Unreleased] +### Breaking changes + +- Remove deprecated `pac` aliases + ## [v0.6.1] - 2020-06-25 ### Added diff --git a/src/lib.rs b/src/lib.rs index 5e240ce7..51c0ca17 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -128,14 +128,6 @@ pub use stm32f1::stm32f103 as pac; #[cfg(any(feature = "stm32f105", feature = "stm32f107"))] pub use stm32f1::stm32f107 as pac; -#[cfg(feature = "device-selected")] -#[deprecated(since = "0.6.0", note = "please use `pac` instead")] -pub use crate::pac as device; - -#[cfg(feature = "device-selected")] -#[deprecated(since = "0.6.0", note = "please use `pac` instead")] -pub use crate::pac as stm32; - #[cfg(feature = "device-selected")] pub mod adc; #[cfg(feature = "device-selected")]