Plugin Directory

Changeset 3496862


Ignore:
Timestamp:
04/01/2026 05:31:54 PM (2 days ago)
Author:
staticwebio
Message:

tagging version 1.0.0

Location:
snapcache
Files:
8 edited
1 copied

Legend:

Unmodified
Added
Removed
  • snapcache/tags/1.0.0/trunk/readme.txt

    r3414335 r3496862  
    33Tags: performance, speed, memcached, object cache
    44Requires at least: 6.4
    5 Tested up to: 6.9
    6 Stable tag: 1.0.0
     5Tested up to: 7.0
     6Stable tag: 1.0.1
    77Requires PHP: 8.1
    88License: GPLv2 or later
     
    4545Full changelog available at https://github.com/staticweb-io/snapcache/blob/master/CHANGELOG.md
    4646
     47= 1.0.1 =
     48Indicate support for WordPress 7.0.
     49
    4750= 1.0.0 =
    4851Initial submission to WordPress.org.
     
    5053== Upgrade Notice ==
    5154
     55= 1.0.1 =
     56Indicate support for WordPress 7.0.
     57
    5258= 1.0.0 =
    5359Initial submission to WordPress.org.
  • snapcache/tags/1.0.0/trunk/src/Admin/Controller.php

    r3414335 r3496862  
    22
    33namespace SnapCache\Admin;
     4
     5if ( ! defined( 'ABSPATH' ) ) {
     6    exit;
     7}
    48
    59class Controller {
  • snapcache/tags/1.0.0/trunk/src/Controller.php

    r3414335 r3496862  
    22
    33namespace SnapCache;
     4
     5if ( ! defined( 'ABSPATH' ) ) {
     6    exit;
     7}
    48
    59class Controller {
  • snapcache/tags/1.0.0/trunk/src/drop-in/object-cache.php

    r3414335 r3496862  
    44 * Plugin URI:        https://github.com/staticweb-io/snapcache
    55 * Description:       Object caching for WordPress.
    6  * Version:           1.0.0
     6 * Version:           1.0.1
    77 * Author:            StaticWeb.io
    88 * Author URI:        https://github.com/staticweb-io/snapcache
     
    2121
    2222declare(strict_types=1);
     23
     24if ( ! defined( 'ABSPATH' ) ) {
     25    exit;
     26}
    2327
    2428if ( ! class_exists( 'Memcached' ) ) {
  • snapcache/trunk/readme.txt

    r3414335 r3496862  
    33Tags: performance, speed, memcached, object cache
    44Requires at least: 6.4
    5 Tested up to: 6.9
    6 Stable tag: 1.0.0
     5Tested up to: 7.0
     6Stable tag: 1.0.1
    77Requires PHP: 8.1
    88License: GPLv2 or later
     
    4545Full changelog available at https://github.com/staticweb-io/snapcache/blob/master/CHANGELOG.md
    4646
     47= 1.0.1 =
     48Indicate support for WordPress 7.0.
     49
    4750= 1.0.0 =
    4851Initial submission to WordPress.org.
     
    5053== Upgrade Notice ==
    5154
     55= 1.0.1 =
     56Indicate support for WordPress 7.0.
     57
    5258= 1.0.0 =
    5359Initial submission to WordPress.org.
  • snapcache/trunk/src/Admin/Controller.php

    r3414335 r3496862  
    22
    33namespace SnapCache\Admin;
     4
     5if ( ! defined( 'ABSPATH' ) ) {
     6    exit;
     7}
    48
    59class Controller {
  • snapcache/trunk/src/Controller.php

    r3414335 r3496862  
    22
    33namespace SnapCache;
     4
     5if ( ! defined( 'ABSPATH' ) ) {
     6    exit;
     7}
    48
    59class Controller {
  • snapcache/trunk/src/drop-in/object-cache.php

    r3414335 r3496862  
    44 * Plugin URI:        https://github.com/staticweb-io/snapcache
    55 * Description:       Object caching for WordPress.
    6  * Version:           1.0.0
     6 * Version:           1.0.1
    77 * Author:            StaticWeb.io
    88 * Author URI:        https://github.com/staticweb-io/snapcache
     
    2121
    2222declare(strict_types=1);
     23
     24if ( ! defined( 'ABSPATH' ) ) {
     25    exit;
     26}
    2327
    2428if ( ! class_exists( 'Memcached' ) ) {
Note: See TracChangeset for help on using the changeset viewer.