Skip to content

Commit 5f02d04

Browse files
committed
Bump plugin versions
1 parent 2b1bf18 commit 5f02d04

File tree

12 files changed

+30
-18
lines changed

12 files changed

+30
-18
lines changed

plugins/embed-optimizer/load.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
* Description: Optimizes the performance of embeds through lazy-loading, preconnecting, and reserving space to reduce layout shifts.
66
* Requires at least: 6.6
77
* Requires PHP: 7.2
8-
* Version: 0.4.0
8+
* Version: 0.4.1
99
* Author: WordPress Performance Team
1010
* Author URI: https://make.wordpress.org/performance/
1111
* License: GPLv2 or later
@@ -71,7 +71,7 @@ static function ( string $global_var_name, string $version, Closure $load ): voi
7171
}
7272
)(
7373
'embed_optimizer_pending_plugin',
74-
'0.4.0',
74+
'0.4.1',
7575
static function ( string $version ): void {
7676
if ( defined( 'EMBED_OPTIMIZER_VERSION' ) ) {
7777
return;

plugins/embed-optimizer/readme.txt

Lines changed: 3 additions & 1 deletion
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: 0.4.0
5+
Stable tag: 0.4.1
66
License: GPLv2 or later
77
License URI: https://www.gnu.org/licenses/gpl-2.0.html
88
Tags: performance, embeds
@@ -67,6 +67,8 @@ The [plugin source code](https://github.com/WordPress/performance/tree/trunk/plu
6767

6868
== Changelog ==
6969

70+
= 0.4.1 =
71+
7072
= 0.4.0 =
7173

7274
**Enhancements**

plugins/image-prioritizer/load.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
* Requires at least: 6.6
77
* Requires PHP: 7.2
88
* Requires Plugins: optimization-detective
9-
* Version: 0.3.0
9+
* Version: 0.3.1
1010
* Author: WordPress Performance Team
1111
* Author URI: https://make.wordpress.org/performance/
1212
* License: GPLv2 or later
@@ -72,7 +72,7 @@ static function ( string $global_var_name, string $version, Closure $load ): voi
7272
}
7373
)(
7474
'image_prioritizer_pending_plugin',
75-
'0.3.0',
75+
'0.3.1',
7676
static function ( string $version ): void {
7777
if ( defined( 'IMAGE_PRIORITIZER_VERSION' ) ) {
7878
return;

plugins/image-prioritizer/readme.txt

Lines changed: 3 additions & 1 deletion
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: 0.3.0
5+
Stable tag: 0.3.1
66
License: GPLv2 or later
77
License URI: https://www.gnu.org/licenses/gpl-2.0.html
88
Tags: performance, optimization, image, lcp, lazy-load
@@ -70,6 +70,8 @@ The [plugin source code](https://github.com/WordPress/performance/tree/trunk/plu
7070

7171
== Changelog ==
7272

73+
= 0.3.1 =
74+
7375
= 0.3.0 =
7476

7577
**Enhancements**

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.6
77
* Requires PHP: 7.2
8-
* Version: 0.9.0
8+
* Version: 1.0.0-beta1
99
* Author: WordPress Performance Team
1010
* Author URI: https://make.wordpress.org/performance/
1111
* License: GPLv2 or later
@@ -71,7 +71,7 @@ static function ( string $global_var_name, string $version, Closure $load ): voi
7171
}
7272
)(
7373
'optimization_detective_pending_plugin',
74-
'0.9.0',
74+
'1.0.0-beta1',
7575
static function ( string $version ): void {
7676
if ( defined( 'OPTIMIZATION_DETECTIVE_VERSION' ) ) {
7777
return;

plugins/optimization-detective/readme.txt

Lines changed: 3 additions & 1 deletion
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: 0.9.0
5+
Stable tag: 1.0.0-beta1
66
License: GPLv2 or later
77
License URI: https://www.gnu.org/licenses/gpl-2.0.html
88
Tags: performance, optimization, rum
@@ -55,6 +55,8 @@ The [plugin source code](https://github.com/WordPress/performance/tree/trunk/plu
5555

5656
== Changelog ==
5757

58+
= 1.0.0-beta1 =
59+
5860
= 0.9.0 =
5961

6062
**Enhancements**

plugins/performance-lab/load.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
* Description: Performance plugin from the WordPress Performance Team, which is a collection of standalone performance features.
66
* Requires at least: 6.6
77
* Requires PHP: 7.2
8-
* Version: 3.7.0
8+
* Version: 3.8.0
99
* Author: WordPress Performance Team
1010
* Author URI: https://make.wordpress.org/performance/
1111
* License: GPLv2 or later
@@ -21,7 +21,7 @@
2121
}
2222
// @codeCoverageIgnoreEnd
2323

24-
define( 'PERFLAB_VERSION', '3.7.0' );
24+
define( 'PERFLAB_VERSION', '3.8.0' );
2525
define( 'PERFLAB_MAIN_FILE', __FILE__ );
2626
define( 'PERFLAB_PLUGIN_DIR_PATH', plugin_dir_path( PERFLAB_MAIN_FILE ) );
2727
define( 'PERFLAB_SCREEN', 'performance-lab' );

plugins/performance-lab/readme.txt

Lines changed: 3 additions & 1 deletion
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: 3.7.0
5+
Stable tag: 3.8.0
66
License: GPLv2 or later
77
License URI: https://www.gnu.org/licenses/gpl-2.0.html
88
Tags: performance, site health, measurement, optimization, diagnostics
@@ -71,6 +71,8 @@ Contributions are always welcome! Learn more about how to get involved in the [C
7171

7272
== Changelog ==
7373

74+
= 3.8.0 =
75+
7476
= 3.7.0 =
7577

7678
**Enhancements**

plugins/speculation-rules/load.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
* Description: Enables browsers to speculatively prerender or prefetch pages to achieve near-instant loads based on user interaction.
66
* Requires at least: 6.6
77
* Requires PHP: 7.2
8-
* Version: 1.3.1
8+
* Version: 1.4.0
99
* Author: WordPress Performance Team
1010
* Author URI: https://make.wordpress.org/performance/
1111
* License: GPLv2 or later
@@ -66,7 +66,7 @@ static function ( string $global_var_name, string $version, Closure $load ): voi
6666
}
6767
)(
6868
'plsr_pending_plugin_info',
69-
'1.3.1',
69+
'1.4.0',
7070
static function ( string $version ): void {
7171

7272
// Define the constant.

plugins/speculation-rules/readme.txt

Lines changed: 3 additions & 1 deletion
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.1
5+
Stable tag: 1.4.0
66
License: GPLv2 or later
77
License URI: https://www.gnu.org/licenses/gpl-2.0.html
88
Tags: performance, javascript, speculation rules, prerender, prefetch
@@ -119,6 +119,8 @@ Contributions are always welcome! Learn more about how to get involved in the [C
119119

120120
== Changelog ==
121121

122+
= 1.4.0 =
123+
122124
= 1.3.1 =
123125

124126
**Bug Fixes**

0 commit comments

Comments
 (0)