diff --git a/readme.txt b/readme.txt index 7294eeba..54219412 100644 --- a/readme.txt +++ b/readme.txt @@ -3,9 +3,9 @@ Contributors: elightup, rilwis, hungviet91, barcavn2 Donate link: https://wpslimseo.com/products/ Tags: seo, search engine optimization, schema, sitemap, google, facebook, twitter, meta tags, meta description, open graph, twitter card, xml sitemap Requires at least: 5.9 -Tested up to: 6.4.3 +Tested up to: 6.5 Requires PHP: 7.2 -Stable tag: 3.23.2 +Stable tag: 3.23.3 License: GPL v3 License URI: http://www.gnu.org/licenses/gpl-3.0.html @@ -154,6 +154,10 @@ Add the following constant in your `wp-config.php` file: == Changelog == += 3.23.3 - 2024-04-08 = +- Stop bots from crawling internal search result pages +- Fix redirection issue with Chinese characters + = 3.23.2 - 2024-03-04 = - Fix wrong param types passed to `get_avatar` function - Add filter `slim_seo_sitemap_style` to remove sitemap style diff --git a/slim-seo.php b/slim-seo.php index 09451f51..e80f2896 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.23.2 + * Version: 3.23.3 * 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.23.2' ); +define( 'SLIM_SEO_VER', '3.23.3' ); define( 'SLIM_SEO_DB_VER', 1 ); require __DIR__ . '/vendor/autoload.php';