Skip to content

Commit b7b19ce

Browse files
authoredDec 6, 2024··
Merge pull request #821 from WordPress/chore/1.3.1
New version 1.3.1
2 parents 49c9f0e + 1986c32 commit b7b19ce

File tree

3 files changed

+15
-8
lines changed

3 files changed

+15
-8
lines changed
 

‎includes/Traits/Version_Utils.php

+5-5
Original file line numberDiff line numberDiff line change
@@ -10,14 +10,14 @@
1010
/**
1111
* Trait for version utilities.
1212
*
13-
* @since 1.4.0
13+
* @since 1.3.1
1414
*/
1515
trait Version_Utils {
1616

1717
/**
1818
* Returns current major WordPress version.
1919
*
20-
* @since 1.4.0
20+
* @since 1.3.1
2121
*
2222
* @return string Stable WordPress version.
2323
*/
@@ -37,7 +37,7 @@ protected function get_wordpress_stable_version(): string {
3737
/**
3838
* Returns WordPress latest version.
3939
*
40-
* @since 1.4.0
40+
* @since 1.3.1
4141
*
4242
* @return string WordPress latest version.
4343
*/
@@ -50,7 +50,7 @@ protected function get_wordpress_latest_version(): string {
5050
/**
5151
* Returns relative WordPress major version.
5252
*
53-
* @since 1.4.0
53+
* @since 1.3.1
5454
*
5555
* @param string $version WordPress major version.
5656
* @param int $steps Steps to find relative version. Defaults to 1 for next major version.
@@ -69,7 +69,7 @@ protected function get_wordpress_relative_major_version( string $version, int $s
6969
/**
7070
* Returns specific information.
7171
*
72-
* @since 1.4.0
72+
* @since 1.3.1
7373
*
7474
* @param string $key The information key to retrieve.
7575
* @return mixed The requested information.

‎plugin.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
* Description: Plugin Check is a WordPress.org tool which provides checks to help plugins meet the directory requirements and follow various best practices.
66
* Requires at least: 6.3
77
* Requires PHP: 7.4
8-
* Version: 1.3.0
8+
* Version: 1.3.1
99
* Author: WordPress Performance Team and Plugin Review Team
1010
* License: GPLv2 or later
1111
* License URI: https://www.gnu.org/licenses/old-licenses/gpl-2.0.html
@@ -16,7 +16,7 @@
1616

1717
use WordPress\Plugin_Check\Plugin_Main;
1818

19-
define( 'WP_PLUGIN_CHECK_VERSION', '1.3.0' );
19+
define( 'WP_PLUGIN_CHECK_VERSION', '1.3.1' );
2020
define( 'WP_PLUGIN_CHECK_MINIMUM_PHP', '7.4' );
2121
define( 'WP_PLUGIN_CHECK_MAIN_FILE', __FILE__ );
2222
define( 'WP_PLUGIN_CHECK_PLUGIN_DIR_PATH', plugin_dir_path( WP_PLUGIN_CHECK_MAIN_FILE ) );

‎readme.txt

+8-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
Contributors: wordpressdotorg
44
Tested up to: 6.7
5-
Stable tag: 1.3.0
5+
Stable tag: 1.3.1
66
License: GPLv2 or later
77
License URI: https://www.gnu.org/licenses/gpl-2.0.html
88
Tags: plugin best practices, testing, accessibility, performance, security
@@ -68,6 +68,13 @@ In any case, passing the checks in this tool likely helps to achieve a smooth pl
6868

6969
== Changelog ==
7070

71+
= 1.3.1 =
72+
73+
* Enhancement - Add version utilities.
74+
* Fix - Escape error messages.
75+
* Fix - Renamed error type to ERROR_LOW_SEVERITY and WARNING_LOW_SEVERITY.
76+
* Fix - Fix PHPCS checks on unwritable filesystems.
77+
7178
= 1.3.0 =
7279

7380
* Enhancement - Update disallowed domains for Plugin URI check.

0 commit comments

Comments
 (0)
Please sign in to comment.