From 03cdea97c999156abd0e0f31abd622c4a7004dbb Mon Sep 17 00:00:00 2001 From: Aki Hamano Date: Sat, 17 Aug 2024 00:35:42 +0900 Subject: [PATCH] Bump minimum required WordPress version to 6.6 --- readme.txt | 2 +- src/plugin-sidebar.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/readme.txt b/readme.txt index f2200c60..51b210d7 100644 --- a/readme.txt +++ b/readme.txt @@ -1,7 +1,7 @@ === Create Block Theme === Contributors: wordpressdotorg, mikachan, onemaggie, pbking, scruffian, mmaattiiaass, jffng, madhudollu, egregor, vcanales, jeffikus, cwhitmore Tags: themes, theme, block-theme -Requires at least: 6.5 +Requires at least: 6.6 Tested up to: 6.6 Stable tag: 2.3.0 Requires PHP: 7.4 diff --git a/src/plugin-sidebar.js b/src/plugin-sidebar.js index 25b5f860..7a7328c3 100644 --- a/src/plugin-sidebar.js +++ b/src/plugin-sidebar.js @@ -3,7 +3,7 @@ */ import { useState } from '@wordpress/element'; import { registerPlugin } from '@wordpress/plugins'; -import { PluginSidebar, PluginSidebarMoreMenuItem } from '@wordpress/edit-site'; +import { PluginSidebar, PluginSidebarMoreMenuItem } from '@wordpress/editor'; import { __, _x } from '@wordpress/i18n'; import { useDispatch } from '@wordpress/data'; import { store as noticesStore } from '@wordpress/notices';