events: Remove ruma-common reexports

This commit is contained in:
Jonas Platte 2021-06-15 09:37:40 +02:00
parent 7b742f1b4c
commit 750fe3f1f6
No known key found for this signature in database
GPG Key ID: CC154DE0E30B7C67
2 changed files with 3 additions and 1 deletions

View File

@ -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

View File

@ -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<PowerLevelsEventContent>;