Plugin Directory

Changeset 3280324


Ignore:
Timestamp:
04/23/2025 10:23:55 PM (12 months ago)
Author:
atakanoz
Message:

Release version 2.0.1

Location:
warmer
Files:
2 edited
32 copied

Legend:

Unmodified
Added
Removed
  • warmer/tags/2.0.1/readme.txt

    r3279388 r3280324  
    33Tags: cache, performance, optimization, cache warmer, crawler
    44Requires at least: 5.0
    5 Tested up to: 6.7.1
    6 Stable tag: 2.0.0
     5Tested up to: 6.8
     6Stable tag: 2.0.1
    77Requires PHP: 7.3.5
    88License: GPLv2 or later
     
    110110== Changelog ==
    111111
     112= 2.0.1 =
     113* Tested up to WordPress 6.8
     114* Fixed minor visual bugs
     115
     116= 2.0.0 =
     117* New UI Improvements
     118* Complete code refactoring
     119* New automated cache warming features
     120* New CPT support
     121* New Webhook support
     122* New WP-CLI support
     123
     124
    112125= 1.0.0 =
    113126* Initial release with core cache warming functionality
  • warmer/tags/2.0.1/warmer.php

    r3279388 r3280324  
    55 * Plugin URI:        https://matterwp.com/plugins/warmer
    66 * Description:       Warmer is a cache preloader for optimizing and managing your WordPress site's cache.
    7  * Version:           2.0.0
     7 * Version:           2.0.1
    88 * Author:            MatterWP
    99 * Author URI:        https://matterwp.com
     
    3535 */
    3636define( 'WARMER_NAME', 'warmer' );
    37 define( 'WARMER_VERSION', '2.0.0' );
     37define( 'WARMER_VERSION', '2.0.1' );
    3838define( 'WARMER_FILE', __FILE__ );
    3939define( 'WARMER_PLUGIN_DIR', trailingslashit( dirname( WARMER_FILE ) ) );
  • warmer/trunk/readme.txt

    r3279388 r3280324  
    33Tags: cache, performance, optimization, cache warmer, crawler
    44Requires at least: 5.0
    5 Tested up to: 6.7.1
    6 Stable tag: 2.0.0
     5Tested up to: 6.8
     6Stable tag: 2.0.1
    77Requires PHP: 7.3.5
    88License: GPLv2 or later
     
    110110== Changelog ==
    111111
     112= 2.0.1 =
     113* Tested up to WordPress 6.8
     114* Fixed minor visual bugs
     115
     116= 2.0.0 =
     117* New UI Improvements
     118* Complete code refactoring
     119* New automated cache warming features
     120* New CPT support
     121* New Webhook support
     122* New WP-CLI support
     123
     124
    112125= 1.0.0 =
    113126* Initial release with core cache warming functionality
  • warmer/trunk/warmer.php

    r3279388 r3280324  
    55 * Plugin URI:        https://matterwp.com/plugins/warmer
    66 * Description:       Warmer is a cache preloader for optimizing and managing your WordPress site's cache.
    7  * Version:           2.0.0
     7 * Version:           2.0.1
    88 * Author:            MatterWP
    99 * Author URI:        https://matterwp.com
     
    3535 */
    3636define( 'WARMER_NAME', 'warmer' );
    37 define( 'WARMER_VERSION', '2.0.0' );
     37define( 'WARMER_VERSION', '2.0.1' );
    3838define( 'WARMER_FILE', __FILE__ );
    3939define( 'WARMER_PLUGIN_DIR', trailingslashit( dirname( WARMER_FILE ) ) );
Note: See TracChangeset for help on using the changeset viewer.