Skip to content

Commit 2f4a9ea

Browse files
committed
Bump versions
1 parent f5f50f9 commit 2f4a9ea

File tree

16 files changed

+40
-24
lines changed

16 files changed

+40
-24
lines changed

plugins/auto-sizes/auto-sizes.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
* Description: Improves responsive images with better sizes calculations and auto-sizes for lazy-loaded images.
66
* Requires at least: 6.6
77
* Requires PHP: 7.2
8-
* Version: 1.3.0
8+
* Version: 1.4.0
99
* Author: WordPress Performance Team
1010
* Author URI: https://make.wordpress.org/performance/
1111
* License: GPLv2 or later
@@ -25,7 +25,7 @@
2525
return;
2626
}
2727

28-
define( 'IMAGE_AUTO_SIZES_VERSION', '1.3.0' );
28+
define( 'IMAGE_AUTO_SIZES_VERSION', '1.4.0' );
2929

3030
require_once __DIR__ . '/includes/auto-sizes.php';
3131
require_once __DIR__ . '/includes/improve-calculate-sizes.php';

plugins/auto-sizes/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.0
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, images, auto-sizes
@@ -52,6 +52,8 @@ Contributions are always welcome! Learn more about how to get involved in the [C
5252

5353
== Changelog ==
5454

55+
= 1.4.0 =
56+
5557
= 1.3.0 =
5658

5759
**Enhancements**

plugins/dominant-color-images/load.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
* Description: Displays placeholders based on an image's dominant color while the image is loading.
66
* Requires at least: 6.6
77
* Requires PHP: 7.2
8-
* Version: 1.1.2
8+
* Version: 1.2.0
99
* Author: WordPress Performance Team
1010
* Author URI: https://make.wordpress.org/performance/
1111
* License: GPLv2 or later
@@ -25,7 +25,7 @@
2525
return;
2626
}
2727

28-
define( 'DOMINANT_COLOR_IMAGES_VERSION', '1.1.2' );
28+
define( 'DOMINANT_COLOR_IMAGES_VERSION', '1.2.0' );
2929

3030
require_once __DIR__ . '/helper.php';
3131
require_once __DIR__ . '/hooks.php';

plugins/dominant-color-images/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.1.2
5+
Stable tag: 1.2.0
66
License: GPLv2 or later
77
License URI: https://www.gnu.org/licenses/gpl-2.0.html
88
Tags: performance, images, dominant color
@@ -47,6 +47,8 @@ Contributions are always welcome! Learn more about how to get involved in the [C
4747

4848
== Changelog ==
4949

50+
= 1.2.0 =
51+
5052
= 1.1.2 =
5153

5254
**Enhancements**

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.3.0
8+
* Version: 0.4.0
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
'embed_optimizer_pending_plugin',
73-
'0.3.0',
73+
'0.4.0',
7474
static function ( string $version ): void {
7575
if ( defined( 'EMBED_OPTIMIZER_VERSION' ) ) {
7676
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.3.0
5+
Stable tag: 0.4.0
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.0 =
71+
7072
= 0.3.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.2.0
9+
* Version: 0.3.0
1010
* Author: WordPress Performance Team
1111
* Author URI: https://make.wordpress.org/performance/
1212
* License: GPLv2 or later
@@ -71,7 +71,7 @@ static function ( string $global_var_name, string $version, Closure $load ): voi
7171
}
7272
)(
7373
'image_prioritizer_pending_plugin',
74-
'0.2.0',
74+
'0.3.0',
7575
static function ( string $version ): void {
7676
if ( defined( 'IMAGE_PRIORITIZER_VERSION' ) ) {
7777
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.2.0
5+
Stable tag: 0.3.0
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.0 =
74+
7375
= 0.2.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-alpha
8+
* Version: 0.9.0
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.9.0-alpha',
73+
'0.9.0',
7474
static function ( string $version ): void {
7575
if ( defined( 'OPTIMIZATION_DETECTIVE_VERSION' ) ) {
7676
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.8.0
5+
Stable tag: 0.9.0
66
License: GPLv2 or later
77
License URI: https://www.gnu.org/licenses/gpl-2.0.html
88
Tags: performance, optimization, rum
@@ -319,6 +319,8 @@ The [plugin source code](https://github.com/WordPress/performance/tree/trunk/plu
319319

320320
== Changelog ==
321321

322+
= 0.9.0 =
323+
322324
= 0.8.0 =
323325

324326
**Enhancements**

0 commit comments

Comments
 (0)