Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions plugin.php
Original file line number Diff line number Diff line change
Expand Up @@ -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.4
* Version: 1.4.0
* Version: 1.5.0
* 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
Expand All @@ -16,7 +16,7 @@

use WordPress\Plugin_Check\Plugin_Main;

define( 'WP_PLUGIN_CHECK_VERSION', '1.4.0' );
define( 'WP_PLUGIN_CHECK_VERSION', '1.5.0' );
define( 'WP_PLUGIN_CHECK_MINIMUM_PHP', '7.4' );
define( 'WP_PLUGIN_CHECK_MAIN_FILE', __FILE__ );
define( 'WP_PLUGIN_CHECK_PLUGIN_DIR_PATH', plugin_dir_path( WP_PLUGIN_CHECK_MAIN_FILE ) );
Expand Down
18 changes: 16 additions & 2 deletions readme.txt
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
=== Plugin Check (PCP) ===

Contributors: wordpressdotorg
Tested up to: 6.7
Stable tag: 1.4.0
Tested up to: 6.8
Stable tag: 1.5.0
License: GPLv2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Tags: plugin best practices, testing, accessibility, performance, security
Expand Down Expand Up @@ -68,6 +68,20 @@ In any case, passing the checks in this tool likely helps to achieve a smooth pl

== Changelog ==

= 1.5.0 =

* Enhancement - Improve url validation to check duplicate protocol.
* Enhancement - Update severity for incorrect textdomains and i18n error codes.
* Enhancement - Now issues in URL Author check are ERROR instead of WARNING.
* Enhancement - New check for minor version in Tested up.
* Enhancement - Make sure headers are not empty in the requires header check.
* Enhancement - Include experimental option in admin.
* Enhancement - Add Behat test for experimental checks from addons.
* Enhancement - Improve license check for Apache.
* Enhancement - Warn if requires headers are not same in readme and plugin header.
* Fix - Remove warning for dynamic callback in register_setting check.
* Fix - Incorrect database tables being referenced on subsites in Multisite.

= 1.4.0 =

* Enhancement - Allow ISC license in the License check.
Expand Down