Skip to content

Commit

Permalink
Version 4.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
rilwis committed Oct 12, 2024
1 parent dbc7f64 commit ee45a5d
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 4 deletions.
9 changes: 8 additions & 1 deletion readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ Tags: seo, redirection, schema, xml sitemap, header
Requires at least: 5.9
Tested up to: 6.6.2
Requires PHP: 7.2
Stable tag: 4.0.0
Stable tag: 4.0.1
License: GPL v3
License URI: http://www.gnu.org/licenses/gpl-3.0.html

Expand Down Expand Up @@ -159,6 +159,13 @@ Add the following constant in your `wp-config.php` file:

== Changelog ==

= 4.0.1 - 2024-10-12 =
- Add integration for Forminator
- Bricks: Ignore elements with scripts, like sliders or counters, to avoid breaking layouts.
- Fix static blog page returning wrong meta
- Fix: Redirects list not update after create/update/delete redirect because of Litespeed cache
- Fix: Surecart product bug

= 4.0.0 - 2024-10-08 =

**Highlights:**
Expand Down
4 changes: 2 additions & 2 deletions slim-seo.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
* Description: A fast and automated SEO plugin for WordPress.
* Author: Slim SEO
* Author URI: https://wpslimseo.com
* Version: 4.0.0
* Version: 4.0.1
* Text Domain: slim-seo
* Domain Path: /languages
* GitHub Plugin URI: elightup/slim-seo
Expand All @@ -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', '4.0.0' );
define( 'SLIM_SEO_VER', '4.0.1' );
define( 'SLIM_SEO_DB_VER', 1 );

require __DIR__ . '/vendor/autoload.php';
Expand Down
1 change: 0 additions & 1 deletion src/MetaTags/Data.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@
use WP_Post;
use WP_Term;
use WP_Post_Type;
use SlimSEO\Helpers\Arr;

class Data {
private $data = [];
Expand Down

0 comments on commit ee45a5d

Please sign in to comment.