From f2e24df164a403a58ce12c48e63c1c4bacc6d00c Mon Sep 17 00:00:00 2001 From: marcusquinn <6428977+marcusquinn@users.noreply.github.com> Date: Wed, 16 Apr 2025 19:41:16 +0100 Subject: [PATCH] Version 2.3.1 - WordPress 6.8 compatibility --- CHANGELOG.md | 5 +++++ README.md | 4 ++++ languages/wp-fix-plugin-does-not-exist-notices.pot | 4 ++-- readme.txt | 8 ++++++-- wp-fix-plugin-does-not-exist-notices.php | 4 ++-- 5 files changed, 19 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ad683fa..a3d5106 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,10 @@ All notable changes to this project should be documented both here and in the main Readme files. +#### [2.3.1] - 2025-04-16 +#### Updated +- Tested compatibility with WordPress 6.8 +- Documentation to reflect WordPress 6.8 compatibility + #### [2.3.0] - 2025-04-15 #### Added - Improved time-efficient development workflow documentation diff --git a/README.md b/README.md index 14c9cff..9c78da4 100644 --- a/README.md +++ b/README.md @@ -234,6 +234,10 @@ For more information on Git Updater integration, see the [Git Updater Required H ## Changelog +### 2.3.1 +* Updated: Tested compatibility with WordPress 6.8 +* Improved: Documentation to reflect WordPress 6.8 compatibility + ### 2.3.0 * Added: Improved time-efficient development workflow documentation * Added: New git workflow guidelines for better branch management diff --git a/languages/wp-fix-plugin-does-not-exist-notices.pot b/languages/wp-fix-plugin-does-not-exist-notices.pot index 7aac3be..7c43e9b 100644 --- a/languages/wp-fix-plugin-does-not-exist-notices.pot +++ b/languages/wp-fix-plugin-does-not-exist-notices.pot @@ -2,14 +2,14 @@ # This file is distributed under the GPL-2.0+. msgid "" msgstr "" -"Project-Id-Version: Fix 'Plugin file does not exist' Notices 2.3.0\n" +"Project-Id-Version: Fix 'Plugin file does not exist' Notices 2.3.1\n" "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/wp-fix-plugin-does-not-exist-notices\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"POT-Creation-Date: 2025-04-15T00:00:00+00:00\n" +"POT-Creation-Date: 2025-04-16T00:00:00+00:00\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "X-Generator: WP-CLI 2.9.0\n" "X-Domain: wp-fix-plugin-does-not-exist-notices\n" diff --git a/readme.txt b/readme.txt index b6d41c9..bfd4d8b 100644 --- a/readme.txt +++ b/readme.txt @@ -3,9 +3,9 @@ Contributors: surferking, wpallstars Donate link: https://www.wpallstars.com/ Tags: plugins, missing plugins, cleanup, error fix, admin tools, plugin file does not exist, wordpress error, plugin error, deactivated plugin, remove plugin reference, fix plugin error, plugin does not exist, plugin file does not exist error Requires at least: 5.0 -Tested up to: 6.7.2 +Tested up to: 6.8 Requires PHP: 7.0 -Stable tag: 2.3.0 +Stable tag: 2.3.1 License: GPL-2.0+ License URI: https://www.gnu.org/licenses/gpl-2.0.html @@ -179,6 +179,10 @@ Manually editing the WordPress database is risky and requires technical knowledg == Changelog == += 2.3.1 = +* Updated: Tested compatibility with WordPress 6.8 +* Improved: Documentation to reflect WordPress 6.8 compatibility + = 2.3.0 = * Added: Improved time-efficient development workflow documentation * Added: New git workflow guidelines for better branch management diff --git a/wp-fix-plugin-does-not-exist-notices.php b/wp-fix-plugin-does-not-exist-notices.php index c5e5871..7180c0d 100644 --- a/wp-fix-plugin-does-not-exist-notices.php +++ b/wp-fix-plugin-does-not-exist-notices.php @@ -3,7 +3,7 @@ * Plugin Name: Fix 'Plugin file does not exist' Notices * Plugin URI: https://www.wpallstars.com * Description: Adds missing plugins to your plugins list with a "Remove Notice" action link, allowing you to safely clean up invalid plugin references. - * Version: 2.3.0 + * Version: 2.3.1 * Author: Marcus Quinn & The WPALLSTARS Team * Author URI: https://www.wpallstars.com * License: GPL-2.0+ @@ -36,4 +36,4 @@ require_once plugin_dir_path(__FILE__) . 'includes/plugin.php'; // Initialize the plugin // This is a test change for our new workflow -new WPALLSTARS\FixPluginDoesNotExistNotices\Plugin(__FILE__, '2.3.0'); +new WPALLSTARS\FixPluginDoesNotExistNotices\Plugin(__FILE__, '2.3.1');