diff --git a/CHANGELOG.md b/CHANGELOG.md index 78da009..17e799c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,11 +7,15 @@ and this project adheres to [Semantic Versioning](http://semver.org/). ## [Unreleased] -## Added +### Added - parallel-gpio: Added `Generic16BitBus` - parallel-gpio: Added `PGPIO16BitInterface` +### Removed + +- Removed prelude + ## [v0.4.1] - 2021-05-10 ### Added diff --git a/src/lib.rs b/src/lib.rs index 496f55e..affb3cd 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -7,8 +7,6 @@ //! to drive a display and allows a driver writer to focus on driving the display itself and only //! have to implement a single interface. -pub mod prelude; - /// A ubiquitous error type for all kinds of problems which could happen when communicating with a /// display #[derive(Clone, Debug)] diff --git a/src/prelude.rs b/src/prelude.rs deleted file mode 100644 index 738b434..0000000 --- a/src/prelude.rs +++ /dev/null @@ -1,2 +0,0 @@ -pub use crate::DisplayError as _display_interface_DisplayError; -pub use crate::WriteOnlyDataCommand as _display_interface_WriteOnlyDataCommand;