From 56a72b5a8e8a3a96360d30f45610a19d9da1a9d3 Mon Sep 17 00:00:00 2001 From: "themeisle[bot]" Date: Mon, 29 Jul 2024 13:46:59 +0000 Subject: [PATCH] chore(release): 3.13.4 ##### [Version 3.13.4](https://github.com/Codeinwp/optimole-wp/compare/v3.13.3...v3.13.4) (2024-07-29) * Improve offloading mechanism * Fix offloaded attachments from other sources getting replaced when post is saved even if there is no associated attachment * Improve error handling --- CHANGELOG.md | 6 ++++++ optimole-wp.php | 4 ++-- package-lock.json | 2 +- package.json | 2 +- readme.txt | 9 +++++---- 5 files changed, 15 insertions(+), 8 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index dc234a0c..97be45f2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,9 @@ +##### [Version 3.13.4](https://github.com/Codeinwp/optimole-wp/compare/v3.13.3...v3.13.4) (2024-07-29) + +* Improve offloading mechanism +* Fix offloaded attachments from other sources getting replaced when post is saved even if there is no associated attachment +* Improve error handling + ##### [Version 3.13.3](https://github.com/Codeinwp/optimole-wp/compare/v3.13.2...v3.13.3) (2024-05-24) * Update dependencies diff --git a/optimole-wp.php b/optimole-wp.php index 72772291..9d8c4b89 100644 --- a/optimole-wp.php +++ b/optimole-wp.php @@ -2,7 +2,7 @@ /** * Plugin Name: Image optimization service by Optimole * Description: Complete handling of your website images. - * Version: 3.13.3 + * Version: 3.13.4 * Author: Optimole * Author URI: https://optimole.com * License: GPL-2.0+ @@ -89,7 +89,7 @@ function optml() { } define( 'OPTML_URL', plugin_dir_url( __FILE__ ) ); define( 'OPTML_PATH', plugin_dir_path( __FILE__ ) ); - define( 'OPTML_VERSION', '3.13.3' ); + define( 'OPTML_VERSION', '3.13.4' ); define( 'OPTML_NAMESPACE', 'optml' ); define( 'OPTML_BASEFILE', __FILE__ ); // Fallback for old PHP versions when this constant is not defined. diff --git a/package-lock.json b/package-lock.json index b7e0ac63..62087d69 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "optimole-wp", - "version": "3.13.3", + "version": "3.13.4", "lockfileVersion": 2, "requires": true, "packages": { diff --git a/package.json b/package.json index dad17edc..0c62ce7a 100755 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "optimole-wp", - "version": "3.13.3", + "version": "3.13.4", "description": "Cloud-based image optimization service - WordPress Integration", "repository": { "type": "git", diff --git a/readme.txt b/readme.txt index 0b4db99c..b0c800d0 100755 --- a/readme.txt +++ b/readme.txt @@ -4,7 +4,7 @@ Tags: image optimization, convert webp, image optimizer, lazy load, image, optim Requires at least: 5.5 Tested up to: 6.6 Requires PHP: 7.4 -Stable tag: 3.13.3 +Stable tag: 3.13.4 License: GPLv3 License URI: https://www.gnu.org/licenses/gpl-3.0.en.html @@ -150,10 +150,11 @@ Discover how to make the most of Optimole with our detailed and user-friendly [d == Changelog == -##### [Version 3.13.3](https://github.com/Codeinwp/optimole-wp/compare/v3.13.2...v3.13.3) (2024-05-24) +##### [Version 3.13.4](https://github.com/Codeinwp/optimole-wp/compare/v3.13.3...v3.13.4) (2024-07-29) -* Update dependencies -* Improve API error handling to display more helpful messages. +* Improve offloading mechanism +* Fix offloaded attachments from other sources getting replaced when post is saved even if there is no associated attachment +* Improve error handling