From 07c0b8feb3408a4672b30bc84834021be0106d56 Mon Sep 17 00:00:00 2001 From: Felix Arntz Date: Thu, 21 Mar 2024 10:18:18 -0700 Subject: [PATCH 1/2] Fix Speculation Rules version and changelog. --- plugins/speculation-rules/load.php | 4 ++-- plugins/speculation-rules/readme.txt | 7 ++----- 2 files changed, 4 insertions(+), 7 deletions(-) diff --git a/plugins/speculation-rules/load.php b/plugins/speculation-rules/load.php index 424d5d65e3..cb8f0389f5 100644 --- a/plugins/speculation-rules/load.php +++ b/plugins/speculation-rules/load.php @@ -5,7 +5,7 @@ * Description: Uses the Speculation Rules API to prerender linked URLs upon hover by default. * Requires at least: 6.4 * Requires PHP: 7.0 - * Version: 1.1.1 + * Version: 1.1.0 * Author: WordPress Performance Team * Author URI: https://make.wordpress.org/performance/ * License: GPLv2 or later @@ -25,7 +25,7 @@ return; } -define( 'SPECULATION_RULES_VERSION', '1.1.1' ); +define( 'SPECULATION_RULES_VERSION', '1.1.0' ); require_once __DIR__ . '/class-plsr-url-pattern-prefixer.php'; require_once __DIR__ . '/helper.php'; diff --git a/plugins/speculation-rules/readme.txt b/plugins/speculation-rules/readme.txt index 0aab2279b9..dbefb026ff 100644 --- a/plugins/speculation-rules/readme.txt +++ b/plugins/speculation-rules/readme.txt @@ -4,7 +4,7 @@ Contributors: wordpressdotorg Requires at least: 6.4 Tested up to: 6.5 Requires PHP: 7.0 -Stable tag: 1.1.1 +Stable tag: 1.1.0 License: GPLv2 or later License URI: https://www.gnu.org/licenses/gpl-2.0.html Tags: performance, javascript, speculation rules, prerender, prefetch @@ -100,13 +100,10 @@ Contributions are always welcome! Learn more about how to get involved in the [C == Changelog == -= 1.1.1 = - -* Bump minimum required WP version to 6.4. ([1062](https://github.com/WordPress/performance/pull/1062)) - = 1.1.0 = * Allow excluding URL patterns from prerendering or prefetching specifically. ([1025](https://github.com/WordPress/performance/pull/1025)) +* Bump minimum required WP version to 6.4. ([1062](https://github.com/WordPress/performance/pull/1062)) * Update tested WordPress version to 6.5. ([1027](https://github.com/WordPress/performance/pull/1027)) = 1.0.1 = From 03e8a965b907efa64fe59181bcd8b3f3afbd3955 Mon Sep 17 00:00:00 2001 From: Felix Arntz Date: Thu, 21 Mar 2024 10:51:49 -0700 Subject: [PATCH 2/2] Fix other standalone plugin versions with 6.4 bump. --- plugins/auto-sizes/auto-sizes.php | 4 ++-- plugins/auto-sizes/readme.txt | 7 ++----- plugins/dominant-color-images/load.php | 4 ++-- plugins/dominant-color-images/readme.txt | 7 ++----- plugins/webp-uploads/load.php | 4 ++-- plugins/webp-uploads/readme.txt | 7 ++----- 6 files changed, 12 insertions(+), 21 deletions(-) diff --git a/plugins/auto-sizes/auto-sizes.php b/plugins/auto-sizes/auto-sizes.php index 12513984c9..21a1b6a3e4 100644 --- a/plugins/auto-sizes/auto-sizes.php +++ b/plugins/auto-sizes/auto-sizes.php @@ -5,7 +5,7 @@ * Description: This plugin implements the HTML spec for adding `sizes="auto"` to lazy-loaded images. * Requires at least: 6.4 * Requires PHP: 7.0 - * Version: 1.0.2 + * Version: 1.0.1 * Author: WordPress Performance Team * Author URI: https://make.wordpress.org/performance/ * License: GPLv2 or later @@ -25,6 +25,6 @@ return; } -define( 'IMAGE_AUTO_SIZES_VERSION', '1.0.2' ); +define( 'IMAGE_AUTO_SIZES_VERSION', '1.0.1' ); require_once __DIR__ . '/hooks.php'; diff --git a/plugins/auto-sizes/readme.txt b/plugins/auto-sizes/readme.txt index c2029df15a..747df35999 100644 --- a/plugins/auto-sizes/readme.txt +++ b/plugins/auto-sizes/readme.txt @@ -4,7 +4,7 @@ Contributors: wordpressdotorg Requires at least: 6.4 Tested up to: 6.5 Requires PHP: 7.0 -Stable tag: 1.0.2 +Stable tag: 1.0.1 License: GPLv2 or later License URI: https://www.gnu.org/licenses/gpl-2.0.html Tags: performance, images, auto-sizes @@ -48,12 +48,9 @@ Contributions are always welcome! Learn more about how to get involved in the [C == Changelog == -= 1.0.2 = - -* Bump minimum required WP version to 6.4. ([1062](https://github.com/WordPress/performance/pull/1062)) - = 1.0.1 = +* Bump minimum required WP version to 6.4. ([1062](https://github.com/WordPress/performance/pull/1062)) * Update tested WordPress version to 6.5. ([1027](https://github.com/WordPress/performance/pull/1027)) = 1.0.0 = diff --git a/plugins/dominant-color-images/load.php b/plugins/dominant-color-images/load.php index 6751ceee06..1f4891f2c4 100644 --- a/plugins/dominant-color-images/load.php +++ b/plugins/dominant-color-images/load.php @@ -5,7 +5,7 @@ * Description: Adds support to store the dominant color of newly uploaded images and create a placeholder background of that color. * Requires at least: 6.4 * Requires PHP: 7.0 - * Version: 1.0.3 + * Version: 1.0.2 * Author: WordPress Performance Team * Author URI: https://make.wordpress.org/performance/ * License: GPLv2 or later @@ -25,7 +25,7 @@ return; } -define( 'DOMINANT_COLOR_IMAGES_VERSION', '1.0.3' ); +define( 'DOMINANT_COLOR_IMAGES_VERSION', '1.0.2' ); require_once __DIR__ . '/helper.php'; require_once __DIR__ . '/hooks.php'; diff --git a/plugins/dominant-color-images/readme.txt b/plugins/dominant-color-images/readme.txt index ff88898365..49a08568a2 100644 --- a/plugins/dominant-color-images/readme.txt +++ b/plugins/dominant-color-images/readme.txt @@ -4,7 +4,7 @@ Contributors: wordpressdotorg Requires at least: 6.4 Tested up to: 6.5 Requires PHP: 7.0 -Stable tag: 1.0.3 +Stable tag: 1.0.2 License: GPLv2 or later License URI: https://www.gnu.org/licenses/gpl-2.0.html Tags: performance, images, dominant color @@ -47,12 +47,9 @@ Contributions are always welcome! Learn more about how to get involved in the [C == Changelog == -= 1.0.3 = - -* Bump minimum required WP version to 6.4. ([1062](https://github.com/WordPress/performance/pull/1062)) - = 1.0.2 = +* Bump minimum required WP version to 6.4. ([1062](https://github.com/WordPress/performance/pull/1062)) * Update tested WordPress version to 6.5. ([1027](https://github.com/WordPress/performance/pull/1027)) = 1.0.1 = diff --git a/plugins/webp-uploads/load.php b/plugins/webp-uploads/load.php index 3efcbe59a0..322c94fb4a 100644 --- a/plugins/webp-uploads/load.php +++ b/plugins/webp-uploads/load.php @@ -5,7 +5,7 @@ * Description: Creates WebP versions for new JPEG image uploads if supported by the server. * Requires at least: 6.4 * Requires PHP: 7.0 - * Version: 1.0.7 + * Version: 1.0.6 * Author: WordPress Performance Team * Author URI: https://make.wordpress.org/performance/ * License: GPLv2 or later @@ -25,7 +25,7 @@ return; } -define( 'WEBP_UPLOADS_VERSION', '1.0.7' ); +define( 'WEBP_UPLOADS_VERSION', '1.0.6' ); define( 'WEBP_UPLOADS_MAIN_FILE', plugin_basename( __FILE__ ) ); require_once __DIR__ . '/helper.php'; diff --git a/plugins/webp-uploads/readme.txt b/plugins/webp-uploads/readme.txt index 4958ebfafd..299f047f66 100644 --- a/plugins/webp-uploads/readme.txt +++ b/plugins/webp-uploads/readme.txt @@ -4,7 +4,7 @@ Contributors: wordpressdotorg Requires at least: 6.4 Tested up to: 6.5 Requires PHP: 7.0 -Stable tag: 1.0.7 +Stable tag: 1.0.6 License: GPLv2 or later License URI: https://www.gnu.org/licenses/gpl-2.0.html Tags: performance, images, webp @@ -58,13 +58,10 @@ By default, the WebP Uploads plugin will only generate WebP versions of the imag == Changelog == -= 1.0.7 = - -* Bump minimum required WP version to 6.4. ([1062](https://github.com/WordPress/performance/pull/1062)) - = 1.0.6 = * Add link to WebP settings to plugins table. ([1036](https://github.com/WordPress/performance/pull/1036)) +* Bump minimum required WP version to 6.4. ([1062](https://github.com/WordPress/performance/pull/1062)) * Update tested WordPress version to 6.5. ([1027](https://github.com/WordPress/performance/pull/1027)) = 1.0.5 =