From 77a95e5ac93a3e219f20a37477064e5ceb543f54 Mon Sep 17 00:00:00 2001 From: Jonas Platte Date: Wed, 6 Apr 2022 11:01:58 +0200 Subject: [PATCH] state-res: Properly declare room version 7 stable --- crates/ruma-state-res/src/room_version.rs | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/crates/ruma-state-res/src/room_version.rs b/crates/ruma-state-res/src/room_version.rs index 7f450d46..902a7763 100644 --- a/crates/ruma-state-res/src/room_version.rs +++ b/crates/ruma-state-res/src/room_version.rs @@ -98,12 +98,7 @@ impl RoomVersion { ..Self::V5 }; - pub const V7: Self = Self { - // FIXME: once room version 7 is stabilized move this to version 8 - disposition: RoomDisposition::Unstable, - allow_knocking: true, - ..Self::V6 - }; + pub const V7: Self = Self { allow_knocking: true, ..Self::V6 }; pub const V8: Self = Self { restricted_join_rules: true, ..Self::V7 };