Skip to content

Commit 3c2436b

Browse files
committed
Version 1.0.1
1 parent 1f2d433 commit 3c2436b

5 files changed

Lines changed: 13 additions & 5 deletions

File tree

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
## Unreleased
22

3+
## 1.0.1 (2026-04-01)
4+
35
- Indicate support for WordPress 7.0.
46

57
## 1.0.0 (2025-11-21)

flake.nix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
with pkgs;
2020
let
2121
name = "snapcache";
22-
version = "1.0.0";
22+
version = "1.0.1";
2323
composerSrc = pkgs.lib.cleanSourceWith {
2424
src = self;
2525
filter =

readme.txt

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ Contributors: staticwebio
33
Tags: performance, speed, memcached, object cache
44
Requires at least: 6.4
55
Tested up to: 7.0
6-
Stable tag: 1.0.0
6+
Stable tag: 1.0.1
77
Requires PHP: 8.1
88
License: GPLv2 or later
99
License URI: https://www.gnu.org/licenses/old-licenses/gpl-2.0.html
@@ -44,10 +44,16 @@ Requests per second in a default WordPress installation. Comparison of object ca
4444

4545
Full changelog available at https://github.com/staticweb-io/snapcache/blob/master/CHANGELOG.md
4646

47+
= 1.0.1 =
48+
Indicate support for WordPress 7.0.
49+
4750
= 1.0.0 =
4851
Initial submission to WordPress.org.
4952

5053
== Upgrade Notice ==
5154

55+
= 1.0.1 =
56+
Indicate support for WordPress 7.0.
57+
5258
= 1.0.0 =
5359
Initial submission to WordPress.org.

snapcache.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
* Plugin Name: SnapCache
44
* Plugin URI: https://github.com/staticweb-io/snapcache
55
* Description: Memcached object cache
6-
* Version: 1.0.0
6+
* Version: 1.0.1
77
* Author: StaticWeb.io
88
* Author URI: https://staticweb.io
99
* Text Domain: snapcache
@@ -23,7 +23,7 @@
2323
return;
2424
}
2525

26-
define( 'SNAPCACHE_VERSION', '1.0.0' );
26+
define( 'SNAPCACHE_VERSION', '1.0.1' );
2727
define( 'SNAPCACHE_PATH', plugin_dir_path( __FILE__ ) );
2828

2929
if ( file_exists( SNAPCACHE_PATH . 'vendor/autoload.php' ) ) {

src/drop-in/object-cache.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
* Plugin Name: SnapCache Object Cache
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
99
* Text Domain: snapcache

0 commit comments

Comments
 (0)