Skip to content

Commit dba4073

Browse files
committed
Bump OD to 0.9.0-alpha and update Embed Optimizer to require at least that version
1 parent 415846d commit dba4073

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

plugins/embed-optimizer/hooks.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ function embed_optimizer_add_non_optimization_detective_hooks(): void {
4242
* @param string $optimization_detective_version Current version of the optimization detective plugin.
4343
*/
4444
function embed_optimizer_init_optimization_detective( string $optimization_detective_version ): void {
45-
$required_od_version = '0.7.0';
45+
$required_od_version = '0.9.0';
4646
if ( version_compare( (string) strtok( $optimization_detective_version, '-' ), $required_od_version, '<' ) ) {
4747
add_action(
4848
'admin_notices',

plugins/optimization-detective/load.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
* Description: Provides an API for leveraging real user metrics to detect optimizations to apply on the frontend to improve page performance.
66
* Requires at least: 6.5
77
* Requires PHP: 7.2
8-
* Version: 0.8.0
8+
* Version: 0.9.0-alpha
99
* Author: WordPress Performance Team
1010
* Author URI: https://make.wordpress.org/performance/
1111
* License: GPLv2 or later
@@ -70,7 +70,7 @@ static function ( string $global_var_name, string $version, Closure $load ): voi
7070
}
7171
)(
7272
'optimization_detective_pending_plugin',
73-
'0.8.0',
73+
'0.9.0-alpha',
7474
static function ( string $version ): void {
7575
if ( defined( 'OPTIMIZATION_DETECTIVE_VERSION' ) ) {
7676
return;

0 commit comments

Comments
 (0)