Skip to content

Commit d73b5f8

Browse files
woorelease: Product version bump update
1 parent f9911b8 commit d73b5f8

File tree

5 files changed

+13
-13
lines changed

5 files changed

+13
-13
lines changed

Diff for: action-scheduler.php

+7-7
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
* Version: 3.9.1
99
* License: GPLv3
1010
* Requires at least: 6.5
11-
* Tested up to: 6.7
11+
* Tested up to: 6.5
1212
* Requires PHP: 7.1
1313
*
1414
* Copyright 2019 Automattic, Inc. (https://automattic.com/contact/)
@@ -29,29 +29,29 @@
2929
* @package ActionScheduler
3030
*/
3131

32-
if ( ! function_exists( 'action_scheduler_register_3_dot_9_dot_0' ) && function_exists( 'add_action' ) ) { // WRCS: DEFINED_VERSION.
32+
if ( ! function_exists( 'action_scheduler_register_3_dot_9_dot_1' ) && function_exists( 'add_action' ) ) { // WRCS: DEFINED_VERSION.
3333

3434
if ( ! class_exists( 'ActionScheduler_Versions', false ) ) {
3535
require_once __DIR__ . '/classes/ActionScheduler_Versions.php';
3636
add_action( 'plugins_loaded', array( 'ActionScheduler_Versions', 'initialize_latest_version' ), 1, 0 );
3737
}
3838

39-
add_action( 'plugins_loaded', 'action_scheduler_register_3_dot_9_dot_0', 0, 0 ); // WRCS: DEFINED_VERSION.
39+
add_action( 'plugins_loaded', 'action_scheduler_register_3_dot_9_dot_1', 0, 0 ); // WRCS: DEFINED_VERSION.
4040

4141
// phpcs:disable Generic.Functions.OpeningFunctionBraceKernighanRitchie.ContentAfterBrace
4242
/**
4343
* Registers this version of Action Scheduler.
4444
*/
45-
function action_scheduler_register_3_dot_9_dot_0() { // WRCS: DEFINED_VERSION.
45+
function action_scheduler_register_3_dot_9_dot_1() { // WRCS: DEFINED_VERSION.
4646
$versions = ActionScheduler_Versions::instance();
47-
$versions->register( '3.9.0', 'action_scheduler_initialize_3_dot_9_dot_0' ); // WRCS: DEFINED_VERSION.
47+
$versions->register( '3.9.1', 'action_scheduler_initialize_3_dot_9_dot_1' ); // WRCS: DEFINED_VERSION.
4848
}
4949

5050
// phpcs:disable Generic.Functions.OpeningFunctionBraceKernighanRitchie.ContentAfterBrace
5151
/**
5252
* Initializes this version of Action Scheduler.
5353
*/
54-
function action_scheduler_initialize_3_dot_9_dot_0() { // WRCS: DEFINED_VERSION.
54+
function action_scheduler_initialize_3_dot_9_dot_1() { // WRCS: DEFINED_VERSION.
5555
// A final safety check is required even here, because historic versions of Action Scheduler
5656
// followed a different pattern (in some unusual cases, we could reach this point and the
5757
// ActionScheduler class is already defined—so we need to guard against that).
@@ -63,7 +63,7 @@ function action_scheduler_initialize_3_dot_9_dot_0() { // WRCS: DEFINED_VERSION.
6363

6464
// Support usage in themes - load this version if no plugin has loaded a version yet.
6565
if ( did_action( 'plugins_loaded' ) && ! doing_action( 'plugins_loaded' ) && ! class_exists( 'ActionScheduler', false ) ) {
66-
action_scheduler_initialize_3_dot_9_dot_0(); // WRCS: DEFINED_VERSION.
66+
action_scheduler_initialize_3_dot_9_dot_1(); // WRCS: DEFINED_VERSION.
6767
do_action( 'action_scheduler_pre_theme_init' );
6868
ActionScheduler_Versions::initialize_latest_version();
6969
}

Diff for: changelog.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
*** Changelog ***
22

3-
= 3.9.1 - 2025-x-x =
3+
= 3.9.1 - 2025-01-21 =
44
* A number of new WP CLI commands have been added, making it easier to manage actions in the terminal and from scripts.
55
* New wp action-scheduler source command to help determine how Action Scheduler is being loaded.
66
* Additional information about the active instance of Action Scheduler is now available in the Help pull-down drawer.

Diff for: package-lock.json

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Diff for: package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "action-scheduler",
33
"title": "Action Scheduler",
4-
"version": "3.9.0",
4+
"version": "3.9.1",
55
"homepage": "https://actionscheduler.org/",
66
"repository": {
77
"type": "git",

Diff for: readme.txt

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
=== Action Scheduler ===
22
Contributors: Automattic, wpmuguru, claudiosanches, peterfabian1000, vedjain, jamosova, obliviousharmony, konamiman, sadowski, royho, barryhughes-1
33
Tags: scheduler, cron
4-
Stable tag: 3.9.0
4+
Stable tag: 3.9.1
55
License: GPLv3
66
Requires at least: 6.5
7-
Tested up to: 6.7
7+
Tested up to: 6.5
88
Requires PHP: 7.1
99

1010
Action Scheduler - Job Queue for WordPress
@@ -47,7 +47,7 @@ Collaboration is cool. We'd love to work with you to improve Action Scheduler. [
4747

4848
== Changelog ==
4949

50-
= 3.9.1 - 2025-x-x =
50+
= 3.9.1 - 2025-01-21 =
5151
* A number of new WP CLI commands have been added, making it easier to manage actions in the terminal and from scripts.
5252
* New wp action-scheduler source command to help determine how Action Scheduler is being loaded.
5353
* Additional information about the active instance of Action Scheduler is now available in the Help pull-down drawer.

0 commit comments

Comments
 (0)