diff --git a/action-scheduler.php b/action-scheduler.php index 170a62d5d..e864d0fe0 100644 --- a/action-scheduler.php +++ b/action-scheduler.php @@ -5,7 +5,7 @@ * Description: A robust scheduling library for use in WordPress plugins. * Author: Automattic * Author URI: https://automattic.com/ - * Version: 3.5.1 + * Version: 3.5.2 * License: GPLv3 * * Copyright 2019 Automattic, Inc. (https://automattic.com/contact/) @@ -26,27 +26,27 @@ * @package ActionScheduler */ -if ( ! function_exists( 'action_scheduler_register_3_dot_5_dot_0' ) && function_exists( 'add_action' ) ) { +if ( ! function_exists( 'action_scheduler_register_3_dot_5_dot_2' ) && function_exists( 'add_action' ) ) { if ( ! class_exists( 'ActionScheduler_Versions', false ) ) { require_once __DIR__ . '/classes/ActionScheduler_Versions.php'; add_action( 'plugins_loaded', array( 'ActionScheduler_Versions', 'initialize_latest_version' ), 1, 0 ); } - add_action( 'plugins_loaded', 'action_scheduler_register_3_dot_5_dot_0', 0, 0 ); + add_action( 'plugins_loaded', 'action_scheduler_register_3_dot_5_dot_2', 0, 0 ); /** * Registers this version of Action Scheduler. */ - function action_scheduler_register_3_dot_5_dot_0() { + function action_scheduler_register_3_dot_5_dot_2() { $versions = ActionScheduler_Versions::instance(); - $versions->register( '3.5.0', 'action_scheduler_initialize_3_dot_5_dot_0' ); + $versions->register( '3.5.2', 'action_scheduler_initialize_3_dot_5_dot_2' ); } /** * Initializes this version of Action Scheduler. */ - function action_scheduler_initialize_3_dot_5_dot_0() { + function action_scheduler_initialize_3_dot_5_dot_2() { // A final safety check is required even here, because historic versions of Action Scheduler // followed a different pattern (in some unusual cases, we could reach this point and the // ActionScheduler class is already defined—so we need to guard against that). @@ -58,7 +58,7 @@ function action_scheduler_initialize_3_dot_5_dot_0() { // Support usage in themes - load this version if no plugin has loaded a version yet. if ( did_action( 'plugins_loaded' ) && ! doing_action( 'plugins_loaded' ) && ! class_exists( 'ActionScheduler', false ) ) { - action_scheduler_initialize_3_dot_5_dot_0(); + action_scheduler_initialize_3_dot_5_dot_2(); do_action( 'action_scheduler_pre_theme_init' ); ActionScheduler_Versions::initialize_latest_version(); } diff --git a/changelog.txt b/changelog.txt index b5c1ba3f8..559af5929 100644 --- a/changelog.txt +++ b/changelog.txt @@ -1,5 +1,8 @@ *** Changelog *** += 3.5.2 - 2022-09-16 = +* Fix - erroneous 3.5.1 release. + = 3.5.1 - 2022-09-13 = * Maintenance on A/S docs. * fix: PHP 8.2 deprecated notice. diff --git a/package.json b/package.json index 2b5e11e5a..36a2cc309 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "action-scheduler", "title": "Action Scheduler", - "version": "3.5.1", + "version": "3.5.2", "homepage": "https://actionscheduler.org/", "repository": { "type": "git", diff --git a/readme.txt b/readme.txt index 151362893..3a3004fb2 100644 --- a/readme.txt +++ b/readme.txt @@ -3,7 +3,7 @@ Contributors: Automattic, wpmuguru, claudiosanches, peterfabian1000, vedjain, ja Tags: scheduler, cron Requires at least: 5.2 Tested up to: 6.0 -Stable tag: 3.5.1 +Stable tag: 3.5.2 License: GPLv3 Requires PHP: 5.6 @@ -47,6 +47,9 @@ Collaboration is cool. We'd love to work with you to improve Action Scheduler. [ == Changelog == += 3.5.2 - 2022-09-16 = +* Fix - erroneous 3.5.1 release. + = 3.5.1 - 2022-09-13 = * Maintenance on A/S docs. * fix: PHP 8.2 deprecated notice.