Skip to content

Commit

Permalink
Set the minimum supported WordPress version to 6.5
Browse files Browse the repository at this point in the history
  • Loading branch information
leonidasmi committed Oct 1, 2024
1 parent ceefe74 commit ee4c5e8
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ jobs:
matrix:
include:
- php_version: "7.2"
wp_version: "6.4"
wp_version: "6.5"
multisite: true
coverage: true

Expand All @@ -151,7 +151,7 @@ jobs:
coverage: false

- php_version: "8.0"
wp_version: "6.4"
wp_version: "6.5"
multisite: false
coverage: false

Expand All @@ -161,7 +161,7 @@ jobs:
coverage: false

- php_version: '8.2'
wp_version: '6.4'
wp_version: '6.5'
multisite: true
coverage: false

Expand Down
2 changes: 1 addition & 1 deletion tests/Unit/Inc/Addon_Manager_Test.php
Original file line number Diff line number Diff line change
Expand Up @@ -583,7 +583,7 @@ public function test_check_for_updates( $addons, $data, $expected, $message ) {

// Now check that the Premium plugin won't show updates, if the requirement for the WP version coming from Yoast free, is not met.
if ( isset( $addons['wp-seo-premium.php'] ) ) {
$wp_version = '6.3';
$wp_version = '6.4';
$updates = $this->instance->check_for_updates( $data );

$this->assertTrue( isset( $updates->no_update['wp-seo-premium.php'] ) );
Expand Down
2 changes: 1 addition & 1 deletion tests/Unit/bootstrap.php
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@

\define( 'YOAST_SEO_PHP_REQUIRED', '7.2.5' );
\define( 'YOAST_SEO_WP_TESTED', '6.6.2' );
\define( 'YOAST_SEO_WP_REQUIRED', '6.4' );
\define( 'YOAST_SEO_WP_REQUIRED', '6.5' );

if ( ! \defined( 'WPSEO_NAMESPACES' ) ) {
\define( 'WPSEO_NAMESPACES', true );
Expand Down
2 changes: 1 addition & 1 deletion wp-seo-main.php
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@

define( 'YOAST_SEO_PHP_REQUIRED', '7.2.5' );
define( 'YOAST_SEO_WP_TESTED', '6.6.2' );
define( 'YOAST_SEO_WP_REQUIRED', '6.4' );
define( 'YOAST_SEO_WP_REQUIRED', '6.5' );

if ( ! defined( 'WPSEO_NAMESPACES' ) ) {
define( 'WPSEO_NAMESPACES', true );
Expand Down
2 changes: 1 addition & 1 deletion wp-seo.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
* Text Domain: wordpress-seo
* Domain Path: /languages/
* License: GPL v3
* Requires at least: 6.4
* Requires at least: 6.5
* Requires PHP: 7.2.5
*
* WC requires at least: 7.1
Expand Down

0 comments on commit ee4c5e8

Please sign in to comment.