From c014313f735c1ddaf1a65969fc7474ebd2b50274 Mon Sep 17 00:00:00 2001 From: Pascal Birchler Date: Wed, 14 Feb 2024 15:20:15 +0100 Subject: [PATCH] Prepare v1.0.1 --- plugin.php | 4 ++-- readme.txt | 8 +++++++- 2 files changed, 9 insertions(+), 3 deletions(-) diff --git a/plugin.php b/plugin.php index fa557a3bb..cfc4df519 100644 --- a/plugin.php +++ b/plugin.php @@ -5,7 +5,7 @@ * Description: Plugin Check is a WordPress.org tool which provides checks to help plugins meet the directory requirements and follow various best practices. * Requires at least: 6.3 * Requires PHP: 7.0 - * Version: 1.0.0 + * Version: 1.0.1 * Author: WordPress Performance Team and Plugin Review Team * License: GPLv2 or later * License URI: https://www.gnu.org/licenses/old-licenses/gpl-2.0.html @@ -16,7 +16,7 @@ use WordPress\Plugin_Check\Plugin_Main; -define( 'WP_PLUGIN_CHECK_VERSION', '1.0.0' ); +define( 'WP_PLUGIN_CHECK_VERSION', '1.0.1' ); define( 'WP_PLUGIN_CHECK_MINIMUM_PHP', '7.0' ); define( 'WP_PLUGIN_CHECK_MAIN_FILE', __FILE__ ); define( 'WP_PLUGIN_CHECK_PLUGIN_DIR_PATH', plugin_dir_path( WP_PLUGIN_CHECK_MAIN_FILE ) ); diff --git a/readme.txt b/readme.txt index 6afb7fcbb..a7cb1ad99 100644 --- a/readme.txt +++ b/readme.txt @@ -4,7 +4,7 @@ Contributors: wordpressdotorg Requires at least: 6.3 Tested up to: 6.4 Requires PHP: 7.0 -Stable tag: 1.0.0 +Stable tag: 1.0.1 License: GPLv2 or later License URI: https://www.gnu.org/licenses/gpl-2.0.html Tags: plugin best practices, testing, accessibility, performance, security @@ -69,6 +69,12 @@ In any case, passing the checks in this tool likely helps to achieve a smooth pl == Changelog == += 1.0.1 = + +* Fix - Add missing `test-content` folder needed for runtime checks. +* Fix - Do not send emails when setting up test environment. +* Fix - Prevent PHP warning when the `argv` variable isn't set. + = 1.0.0 = * Feature - Complete overhaul of the plugin, its architecture, and all checks.