Skip to content

Commit

Permalink
v6.4-a5: * **Core** Minimum required WP version escalated to WP v5.3.
Browse files Browse the repository at this point in the history
  • Loading branch information
Hai Zheng committed Jul 29, 2024
1 parent 27f15f1 commit 7b78788
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
6 changes: 3 additions & 3 deletions litespeed-cache.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
* Plugin Name: LiteSpeed Cache
* Plugin URI: https://www.litespeedtech.com/products/cache-plugins/wordpress-acceleration
* Description: High-performance page caching and site optimization from LiteSpeed
* Version: 6.4-a4
* Version: 6.4-a5
* Author: LiteSpeed Technologies
* Author URI: https://www.litespeedtech.com
* License: GPLv3
Expand Down Expand Up @@ -34,7 +34,7 @@
return;
}

!defined('LSCWP_V') && define('LSCWP_V', '6.4-a4');
!defined('LSCWP_V') && define('LSCWP_V', '6.4-a5');

!defined('LSCWP_CONTENT_DIR') && define('LSCWP_CONTENT_DIR', WP_CONTENT_DIR);
!defined('LSCWP_DIR') && define('LSCWP_DIR', __DIR__ . '/'); // Full absolute path '/var/www/html/***/wp-content/plugins/litespeed-cache/' or MU
Expand Down Expand Up @@ -180,7 +180,7 @@ function run_litespeed_cache()
}

//Check minimum WP requirements, which is 4.0 at the moment.
if (version_compare($GLOBALS['wp_version'], '4.0', '<')) {
if (version_compare($GLOBALS['wp_version'], '5.3', '<')) {
return;
}

Expand Down
3 changes: 2 additions & 1 deletion readme.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
=== LiteSpeed Cache ===
Contributors: LiteSpeedTech
Tags: caching, optimize, performance, pagespeed, core web vitals, seo, speed, image optimize, compress, object cache, redis, memcached, database cleaner
Requires at least: 4.0
Requires at least: 5.3
Tested up to: 6.6.1
Stable tag: 6.3
License: GPLv3
Expand Down Expand Up @@ -255,6 +255,7 @@ The vast majority of plugins and themes are compatible with LiteSpeed Cache. The
* **GUI** Regrouped CDN menu.
* **3rd** Add Elementor Edit button back in ESI. (PR#635)
* **Core** Minimum required PHP version escalated to PHP v7.2.0.
* **Core** Minimum required WP version escalated to WP v5.3.

= 6.3 - Jul 22 2024 =
* 🌱**Page Optimize** HTML Keep Comments: When minifying HTML do not discard comments that match a specified pattern. (#328853)
Expand Down

0 comments on commit 7b78788

Please sign in to comment.