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")]