Skip to content

Commit 8e964bb

Browse files
committed
Version 9.7.0
1 parent 1ab4741 commit 8e964bb

File tree

5 files changed

+17
-5
lines changed

5 files changed

+17
-5
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,12 @@
11
## Unreleased
22

3+
## 9.7.0 (2025-12-02)
4+
35
- Don't load plugin code unless in the CLI or an admin.
46
This should provide a small speed boost for non-admin
57
users.
8+
- Internal code changes to satisfy wordpress.org policies.
9+
This should not affect behavior.
610

711
## 9.6.0 (2025-11-05)
812

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

readme.txt

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ Contributors: staticwebio
33
Tags: performance, s3, security, speed, static site generator
44
Requires at least: 6.4
55
Tested up to: 6.9
6-
Stable tag: 9.6.0
6+
Stable tag: 9.7.0
77
Requires PHP: 8.1
88
License: Unlicense
99
License URI: https://github.com/staticweb-io/static-deploy/blob/develop/LICENSE
@@ -34,6 +34,11 @@ This dramatically reduces the attack surface of your website and makes expensive
3434

3535
Full changelog available at https://github.com/staticweb-io/static-deploy/blob/develop/CHANGELOG.md
3636

37+
= 9.7.0 =
38+
Don't load plugin code unless in the CLI or an admin.
39+
This should provide a small speed boost for non-admin
40+
users.
41+
3742
= 9.6.0 =
3843
Prune unused AWS dependencies.
3944

@@ -42,6 +47,9 @@ Initial submission to WordPress.org.
4247

4348
== Upgrade Notice ==
4449

50+
= 9.7.0 =
51+
Minor speed improvements.
52+
4553
= 9.6.0 =
4654
Prune unused AWS dependencies.
4755

src-github/drop-in/advanced-cache.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
* Plugin Name: Static Deploy Page Cache (Drop-in)
44
* Plugin URI: https://github.com/staticweb-io/static-deploy
55
* Description: Advanced page caching and optimization.
6-
* Version: 9.6.0
6+
* Version: 9.7.0
77
* Author: StaticWeb.io
88
* Author URI: https://github.com/staticweb-io/static-deploy
99
* Text Domain: static-deploy

staticweb-deploy.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
* Plugin Name: StaticWeb Deploy
44
* Plugin URI: https://github.com/staticweb-io/static-deploy
55
* Description: Generate static sites for deployment as files or S3-compatible storage.
6-
* Version: 9.6.0
6+
* Version: 9.7.0
77
* Author: StaticWeb.io
88
* Author URI: https://staticweb.io
99
* Text Domain: staticweb-deploy
@@ -23,7 +23,7 @@
2323
return;
2424
}
2525

26-
define( 'STATIC_DEPLOY_VERSION', '9.6.0' );
26+
define( 'STATIC_DEPLOY_VERSION', '9.7.0' );
2727
define( 'STATIC_DEPLOY_PATH', plugin_dir_path( __FILE__ ) );
2828

2929
if ( ! defined( 'STATIC_DEPLOY_DEBUG' ) ) {

0 commit comments

Comments
 (0)