From 0e0506ce94a5347c9972c72714953885108cea4b Mon Sep 17 00:00:00 2001 From: Jan Niehusmann Date: Sun, 22 Oct 2023 20:45:10 +0000 Subject: [PATCH] Make i2c::controller pub again According to cargo semver-checks, that's necessary to stay semver compatible with v0.9.0 --- rp2040-hal/src/i2c.rs | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/rp2040-hal/src/i2c.rs b/rp2040-hal/src/i2c.rs index aecab59fa..2408acdb5 100644 --- a/rp2040-hal/src/i2c.rs +++ b/rp2040-hal/src/i2c.rs @@ -53,7 +53,11 @@ use crate::{ typelevel::Sealed, }; -mod controller; +/// Controller implementaion +/// +/// This is only pub for historical reasons, to stay semver compatible with v0.9.0. +/// It should be made private before releasing v0.10.0. +pub mod controller; pub mod peripheral; /// Pac I2C device