diff --git a/crates/ruma-events/CHANGELOG.md b/crates/ruma-events/CHANGELOG.md index e70df62e..b2743136 100644 --- a/crates/ruma-events/CHANGELOG.md +++ b/crates/ruma-events/CHANGELOG.md @@ -5,6 +5,8 @@ Breaking changes: * Rename `key::verification::AcceptMethod::{MSasV1 => SasV1}` * As above, drop `M` prefix from `key::verification::VerificationMethod` variants * Additionally, fix the name of the QR code one (`QrScanShowV1` to `QrCodeScanV1`) +* Remove `room::power_level::NotificationPowerLevels`, now found in `ruma_common::power_levels` + (or `ruma::power_levels`) # 0.22.2 diff --git a/crates/ruma-events/src/room/power_levels.rs b/crates/ruma-events/src/room/power_levels.rs index 0f38093b..69f03ccd 100644 --- a/crates/ruma-events/src/room/power_levels.rs +++ b/crates/ruma-events/src/room/power_levels.rs @@ -10,7 +10,7 @@ use serde::{Deserialize, Serialize}; use crate::{EventType, StateEvent}; -pub use ruma_common::power_levels::NotificationPowerLevels; +use ruma_common::power_levels::NotificationPowerLevels; /// Defines the power levels (privileges) of users in the room. pub type PowerLevelsEvent = StateEvent;