From 4680f5c69666368ec68e8fd7dfdc992ff7ce9768 Mon Sep 17 00:00:00 2001 From: Sertii <36940685+Sreini@users.noreply.github.com> Date: Mon, 16 Feb 2026 07:34:38 +0100 Subject: [PATCH 1/6] release: 3.6.10 --- readme.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/readme.txt b/readme.txt index 565e7c67..aa6e9ea1 100644 --- a/readme.txt +++ b/readme.txt @@ -4,7 +4,7 @@ Donate link: https://tinypng.com/ Tags: compress images, compression, image size, page speed, performance Requires at least: 4.0 Tested up to: 6.9 -Stable tag: 3.6.9 +Stable tag: 3.6.10 License: GPLv2 or later License URI: http://www.gnu.org/licenses/gpl-2.0.html From 6adb68b3104f278d8a5731086c886f46c0970f94 Mon Sep 17 00:00:00 2001 From: tijmen Date: Mon, 16 Feb 2026 09:47:34 +0100 Subject: [PATCH 2/6] 3.6.11 - added source header check before release --- bin/check-version | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/bin/check-version b/bin/check-version index 23f0efa6..7f2c41e5 100755 --- a/bin/check-version +++ b/bin/check-version @@ -9,10 +9,16 @@ TAG_VERSION="${1:-${GITHUB_REF#refs/tags/}}" # Stable tag from readme.txt README_VERSION=$(grep -m 1 "^Stable tag:" readme.txt | awk '{print $3}') +SOURCE_VERSION=$(grep "Version:" tiny-compress-images.php | head -n 1 | cut -d ':' -f 2 | xargs) if [ "$TAG_VERSION" != "$README_VERSION" ]; then echo "Error: Tag: $TAG_VERSION, readme.txt: $README_VERSION" exit 1 fi +if [ "$TAG_VERSION" != "$SOURCE_VERSION" ]; then + echo "Error: Tag: $TAG_VERSION, tiny-compress-images.php: $SOURCE_VERSION" + exit 1 +fi + echo "Version matches git release" From e3fa6ef5bff5aa740d38e8bb82a48f0512b3dad3 Mon Sep 17 00:00:00 2001 From: tijmen Date: Mon, 16 Feb 2026 09:47:48 +0100 Subject: [PATCH 3/6] 3.6.11 - updated in readme and added changelog --- readme.txt | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/readme.txt b/readme.txt index aa6e9ea1..5308f996 100644 --- a/readme.txt +++ b/readme.txt @@ -4,7 +4,7 @@ Donate link: https://tinypng.com/ Tags: compress images, compression, image size, page speed, performance Requires at least: 4.0 Tested up to: 6.9 -Stable tag: 3.6.10 +Stable tag: 3.6.11 License: GPLv2 or later License URI: http://www.gnu.org/licenses/gpl-2.0.html @@ -174,6 +174,9 @@ A: You can upgrade to a paid account by adding your *Payment details* on your [a A: When the conversion feature is enabled (to convert images to AVIF or WebP), each image will use double the number of credits: one for compression and one for format conversion. == Changelog == += 3.6.11 = +* chore: updated tiny package to 1.6.4 + = 3.6.9 = * fix: prevent picture element on product pages (WooCommerce) From 5c9b44d354705c85b8d0abaaeabc9d1fbb5fba62 Mon Sep 17 00:00:00 2001 From: tijmen Date: Mon, 16 Feb 2026 09:48:05 +0100 Subject: [PATCH 4/6] updated plug-in header to 3.6.11 --- tiny-compress-images.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tiny-compress-images.php b/tiny-compress-images.php index 57b90c17..74341830 100644 --- a/tiny-compress-images.php +++ b/tiny-compress-images.php @@ -2,7 +2,7 @@ /** * Plugin Name: TinyPNG - JPEG, PNG & WebP image compression * Description: Speed up your website. Optimize your JPEG, PNG, and WebP images automatically with TinyPNG. - * Version: 3.6.9 + * Version: 3.6.11 * Author: TinyPNG * Author URI: https://tinypng.com * Text Domain: tiny-compress-images From 8cc1120e12a660a70741f8504918ca6dd6b79583 Mon Sep 17 00:00:00 2001 From: tijmen Date: Mon, 16 Feb 2026 10:23:21 +0100 Subject: [PATCH 5/6] Move to 3.6.12 --- readme.txt | 4 ++-- tiny-compress-images.php | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/readme.txt b/readme.txt index 5308f996..ab72998c 100644 --- a/readme.txt +++ b/readme.txt @@ -4,7 +4,7 @@ Donate link: https://tinypng.com/ Tags: compress images, compression, image size, page speed, performance Requires at least: 4.0 Tested up to: 6.9 -Stable tag: 3.6.11 +Stable tag: 3.6.12 License: GPLv2 or later License URI: http://www.gnu.org/licenses/gpl-2.0.html @@ -174,7 +174,7 @@ A: You can upgrade to a paid account by adding your *Payment details* on your [a A: When the conversion feature is enabled (to convert images to AVIF or WebP), each image will use double the number of credits: one for compression and one for format conversion. == Changelog == -= 3.6.11 = += 3.6.12 = * chore: updated tiny package to 1.6.4 = 3.6.9 = diff --git a/tiny-compress-images.php b/tiny-compress-images.php index 74341830..6576e7dc 100644 --- a/tiny-compress-images.php +++ b/tiny-compress-images.php @@ -2,7 +2,7 @@ /** * Plugin Name: TinyPNG - JPEG, PNG & WebP image compression * Description: Speed up your website. Optimize your JPEG, PNG, and WebP images automatically with TinyPNG. - * Version: 3.6.11 + * Version: 3.6.12 * Author: TinyPNG * Author URI: https://tinypng.com * Text Domain: tiny-compress-images From 634a40fd71c6c5ea0b52f2551c96842f1ce46b34 Mon Sep 17 00:00:00 2001 From: tijmen Date: Mon, 16 Feb 2026 12:45:08 +0100 Subject: [PATCH 6/6] add fix to changelog for 3.6.12 --- readme.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/readme.txt b/readme.txt index ab72998c..4a4b50e1 100644 --- a/readme.txt +++ b/readme.txt @@ -176,6 +176,7 @@ A: When the conversion feature is enabled (to convert images to AVIF or WebP), e == Changelog == = 3.6.12 = * chore: updated tiny package to 1.6.4 +* fix: resolved warning when img tag was missing src attribute = 3.6.9 = * fix: prevent picture element on product pages (WooCommerce)