Skip to content

Commit cd8d727

Browse files
committed
Version 9.3.0
1 parent 7434fee commit cd8d727

File tree

5 files changed

+7
-5
lines changed

5 files changed

+7
-5
lines changed

CHANGELOG.md

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

3+
## 9.3.0 (2025-07-29)
4+
35
- Remove "debugLogging" option. Instead, debug logs are enabled
46
when WP_DEBUG is true or when the "--debug" flag is passed to
57
the WP CLI. This improves performance when debug logs are

flake.nix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
with pkgs;
1313
let
1414
name = "static-deploy";
15-
version = "9.2.1";
15+
version = "9.3.0";
1616
composerSrc = pkgs.lib.cleanSourceWith {
1717
src = self;
1818
filter = path: type:

src/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.2.1
6+
* Version: 9.3.0
77
* Author: StaticWeb.io
88
* Author URI: https://github.com/staticweb-io/static-deploy
99
* Text Domain: static-deploy

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: Static Deploy Object Cache for Memcached (Drop-in)
44
* Plugin URI: https://github.com/staticweb-io/static-deploy
55
* Description: Object caching for Memcached.
6-
* Version: 9.2.1
6+
* Version: 9.3.0
77
* Author: StaticWeb.io
88
* Author URI: https://github.com/staticweb-io/static-deploy
99
* Text Domain: static-deploy

static-deploy.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
* Plugin Name: Static Deploy
44
* Plugin URI: https://github.com/staticweb-io/static-deploy
55
* Description: Static site generator functionality for WordPress.
6-
* Version: 9.2.1
6+
* Version: 9.3.0
77
* Author: StaticWeb.io
88
* Author URI: https://github.com/staticweb-io/static-deploy
99
* Text Domain: static-deploy
@@ -17,7 +17,7 @@
1717
die;
1818
}
1919

20-
define( 'STATIC_DEPLOY_VERSION', '9.2.1' );
20+
define( 'STATIC_DEPLOY_VERSION', '9.3.0' );
2121
define( 'STATIC_DEPLOY_PATH', plugin_dir_path( __FILE__ ) );
2222

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

0 commit comments

Comments
 (0)