From 784cace85ea2586a25f8c93729aa239a2b8ac9f5 Mon Sep 17 00:00:00 2001 From: Jeffrey Carandang Date: Sat, 18 Apr 2026 02:54:20 +0800 Subject: [PATCH 1/6] Bump tested up to version to 7.0 --- readme.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/readme.txt b/readme.txt index c5dbb29..27d9e28 100644 --- a/readme.txt +++ b/readme.txt @@ -1,7 +1,7 @@ === Simple Podcasting === Contributors: 10up, helen, adamsilverstein, jakemgold, jeffpaul, cadic Tags: podcasting, podcast, apple podcasts, episode, season -Tested up to: 6.9 +Tested up to: 7.0 Stable tag: 1.9.1 License: GPLv2 or later License URI: http://www.gnu.org/licenses/gpl-2.0.html From 6186772264a18755db66747a113c0e7faef4b8f9 Mon Sep 17 00:00:00 2001 From: Jeffrey Paul Date: Tue, 2 Jun 2026 10:50:30 -0500 Subject: [PATCH 2/6] Update required WordPress version to 6.8 --- simple-podcasting.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/simple-podcasting.php b/simple-podcasting.php index 6553084..87ff419 100644 --- a/simple-podcasting.php +++ b/simple-podcasting.php @@ -4,7 +4,7 @@ * Plugin URI: https://github.com/10up/simple-podcasting * Description: Easily set up multiple podcast feeds using built-in WordPress posts. Includes a podcast block for the new WordPress editor. * Version: 1.9.1 - * Requires at least: 6.6 + * Requires at least: 6.8 * Requires PHP: 7.4 * Author: 10up * Author URI: http://10up.com/ From 88cfdbbb3f04f63708eb91c26b3df605aa757ea1 Mon Sep 17 00:00:00 2001 From: Jeffrey Paul Date: Tue, 2 Jun 2026 10:51:27 -0500 Subject: [PATCH 3/6] Update WordPress version requirement to 6.8 --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 74cdfe8..f0eb7b5 100644 --- a/README.md +++ b/README.md @@ -15,7 +15,7 @@ Podcasting is a method to distribute audio messages through a feed to which list ## Requirements * PHP 7.4+ -* [WordPress](http://wordpress.org) 6.6+ +* [WordPress](http://wordpress.org) 6.8+ * RSS feeds must not be disabled ## Installation From 17287bcbac7b6f6710613253970c153415bd1152 Mon Sep 17 00:00:00 2001 From: Jeffrey Paul Date: Tue, 2 Jun 2026 10:52:01 -0500 Subject: [PATCH 4/6] Update WordPress minimum version to 6.8 in Cypress workflow --- .github/workflows/cypress.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/cypress.yml b/.github/workflows/cypress.yml index 66f445e..244b209 100644 --- a/.github/workflows/cypress.yml +++ b/.github/workflows/cypress.yml @@ -27,7 +27,7 @@ jobs: core: - {name: 'WP latest', version: 'latest'} - {name: 'WP trunk', version: 'WordPress/WordPress#master'} - - {name: 'WP minimum', version: 'WordPress/WordPress#6.6'} + - {name: 'WP minimum', version: 'WordPress/WordPress#6.8'} steps: - name: Checkout From 34f53147eefd61c0d0bfdecb3838b3c9a6c658e5 Mon Sep 17 00:00:00 2001 From: Peter Wilson Date: Tue, 16 Jun 2026 14:12:32 +1000 Subject: [PATCH 5/6] Update imports following minumum WP version bump. --- assets/js/create-podcast-show.js | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/assets/js/create-podcast-show.js b/assets/js/create-podcast-show.js index 018898c..257693d 100644 --- a/assets/js/create-podcast-show.js +++ b/assets/js/create-podcast-show.js @@ -15,14 +15,9 @@ import { import { MediaUpload, MediaUploadCheck } from '@wordpress/block-editor'; import { useState, useEffect } from "@wordpress/element"; import { useSelect, dispatch } from "@wordpress/data"; +import { PluginDocumentSettingPanel, store as editorStore } from '@wordpress/editor'; +import { store as coreDataStore } from '@wordpress/core-data'; -// Once WordPress 6.6 becomes our minimum, change this back to `import { PluginDocumentSettingPanel } from '@wordpress/editor';`. -const PluginDocumentSettingPanel = wp.editor?.PluginDocumentSettingPanel ?? ( wp.editPost?.PluginDocumentSettingPanel ?? wp.editSite?.PluginDocumentSettingPanel ); - -// Due to unsupported versions of React, we're importing stores from the -// `wp` namespace instead of @wordpress NPM packages for the following. -const { store: editorStore } = wp.editor; -const { store: coreDataStore } = wp.coreData; const DEFAULT_QUERY = { per_page: -1, orderby: 'name', From 39eb9787c478c6f4ee356e7f0c9ab35945cc2670 Mon Sep 17 00:00:00 2001 From: Peter Wilson Date: Tue, 16 Jun 2026 14:27:06 +1000 Subject: [PATCH 6/6] Move requires at least header to readme to allow out-of-cycle updates. --- readme.txt | 13 +++++++------ simple-podcasting.php | 1 - 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/readme.txt b/readme.txt index 27d9e28..0ded449 100644 --- a/readme.txt +++ b/readme.txt @@ -1,10 +1,11 @@ === Simple Podcasting === -Contributors: 10up, helen, adamsilverstein, jakemgold, jeffpaul, cadic -Tags: podcasting, podcast, apple podcasts, episode, season -Tested up to: 7.0 -Stable tag: 1.9.1 -License: GPLv2 or later -License URI: http://www.gnu.org/licenses/gpl-2.0.html +Contributors: 10up, helen, adamsilverstein, jakemgold, jeffpaul, cadic +Tags: podcasting, podcast, apple podcasts, episode, season +Requires at least: 6.8 +Tested up to: 7.0 +Stable tag: 1.9.1 +License: GPLv2 or later +License URI: http://www.gnu.org/licenses/gpl-2.0.html Set up multiple podcast feeds using built-in WordPress posts. Includes a podcast block and podcast transcript block for the WordPress block editor. diff --git a/simple-podcasting.php b/simple-podcasting.php index 87ff419..452e856 100644 --- a/simple-podcasting.php +++ b/simple-podcasting.php @@ -4,7 +4,6 @@ * Plugin URI: https://github.com/10up/simple-podcasting * Description: Easily set up multiple podcast feeds using built-in WordPress posts. Includes a podcast block for the new WordPress editor. * Version: 1.9.1 - * Requires at least: 6.8 * Requires PHP: 7.4 * Author: 10up * Author URI: http://10up.com/