diff --git a/readme.txt b/readme.txt index 07ab2983..7064fdb1 100644 --- a/readme.txt +++ b/readme.txt @@ -5,7 +5,7 @@ Tags: seo, redirection, schema, xml sitemap, header Requires at least: 5.9 Tested up to: 6.5.4 Requires PHP: 7.2 -Stable tag: 3.25.1 +Stable tag: 3.25.2 License: GPL v3 License URI: http://www.gnu.org/licenses/gpl-3.0.html @@ -157,6 +157,9 @@ Add the following constant in your `wp-config.php` file: == Changelog == += 3.25.2 - 2024-06-21 = +- Fix error when getting post images for SureCart products + = 3.25.1 - 2024-06-11 = - Fix typo in redirection module - Check if queried object returns null that causes error for Open Graph diff --git a/slim-seo.php b/slim-seo.php index 55258f09..1b740a42 100644 --- a/slim-seo.php +++ b/slim-seo.php @@ -5,7 +5,7 @@ * Description: A fast and automated SEO plugin for WordPress. * Author: eLightUp * Author URI: https://elightup.com - * Version: 3.25.1 + * Version: 3.25.2 * Text Domain: slim-seo * Domain Path: /languages * GitHub Plugin URI: elightup/slim-seo @@ -19,7 +19,7 @@ define( 'SLIM_SEO_URL', plugin_dir_url( __FILE__ ) ); define( 'SLIM_SEO_REDIRECTS', 'ss_redirects' ); define( 'SLIM_SEO_DELETE_404_LOGS_ACTION', 'delete_404_logs' ); -define( 'SLIM_SEO_VER', '3.25.1' ); +define( 'SLIM_SEO_VER', '3.25.2' ); define( 'SLIM_SEO_DB_VER', 1 ); require __DIR__ . '/vendor/autoload.php';