Skip to content

Commit f38a2d8

Browse files
committed
Version 0.3.0
1 parent 9be82e1 commit f38a2d8

6 files changed

Lines changed: 12 additions & 12 deletions

File tree

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
## Unreleased
22

3-
## 0.2.0 (2025-11-21)
3+
## 0.3.0 (2025-11-21)
44

55
- Initial release.

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 = "0.2.0";
22+
version = "0.3.0";
2323
composerSrc = pkgs.lib.cleanSourceWith {
2424
src = self;
2525
filter =

readme.txt

Lines changed: 4 additions & 4 deletions
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: 6.9
6-
Stable tag: 0.2.0
6+
Stable tag: 0.3.0
77
Requires PHP: 8.1
88
License: GPLv2 or later
99
License URI: https://www.gnu.org/licenses/old-licenses/gpl-2.0.html
@@ -29,7 +29,7 @@ See the Benchmarks section for performance results.
2929

3030
Requests per second in a default WordPress installation. Comparison of object cache functionality only.
3131

32-
* **SnapCache v0.2.0 with Memcached - 387.0 req/sec**
32+
* **SnapCache v0.3.0 with Memcached - 387.0 req/sec**
3333
* Redis Cache v2.7.0 - 367.1 req/sec
3434
* LiteSpeed v7.6.2 with Redis - 218.6 req/sec
3535
* LiteSpeed v7.6.2 with Memcached - 218.0 req/sec
@@ -44,10 +44,10 @@ 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-
= 0.2.0 =
47+
= 0.3.0 =
4848
Initial submission to WordPress.org.
4949

5050
== Upgrade Notice ==
5151

52-
= 0.2.0 =
52+
= 0.3.0 =
5353
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: 0.2.0
6+
* Version: 0.3.0
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', '0.2.0' );
26+
define( 'SNAPCACHE_VERSION', '0.3.0' );
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: 0.2.0
6+
* Version: 0.3.0
77
* Author: StaticWeb.io
88
* Author URI: https://github.com/staticweb-io/snapcache
99
* Text Domain: snapcache

update.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
{
22
"name": "SnapCache",
3-
"version": "0.2.0",
4-
"download_url": "https://github.com/staticweb-io/snapcache/releases/download/v0.2.0/plugin.zip",
3+
"version": "0.3.0",
4+
"download_url": "https://github.com/staticweb-io/snapcache/releases/download/v0.3.0/plugin.zip",
55
"requires": "6.4",
66
"tested": "6.9",
7-
"last_updated": "2025-12-01 13:32:19 -0600"
7+
"last_updated": "2025-12-01 22:16:14 -0600"
88
}

0 commit comments

Comments
 (0)