Plugin Directory

Changeset 2786042


Ignore:
Timestamp:
09/16/2022 03:50:48 PM (3 years ago)
Author:
royho
Message:

Release 3.5.2

Location:
action-scheduler
Files:
6 edited
1 copied

Legend:

Unmodified
Added
Removed
  • action-scheduler/tags/3.5.2/action-scheduler.php

    r2786022 r2786042  
    66 * Author: Automattic
    77 * Author URI: https://automattic.com/
    8  * Version: 3.5.1
     8 * Version: 3.5.2
    99 * License: GPLv3
    1010 *
     
    2727 */
    2828
    29 if ( ! function_exists( 'action_scheduler_register_3_dot_5_dot_1' ) && function_exists( 'add_action' ) ) {
     29if ( ! function_exists( 'action_scheduler_register_3_dot_5_dot_2' ) && function_exists( 'add_action' ) ) {
    3030
    3131    if ( ! class_exists( 'ActionScheduler_Versions', false ) ) {
     
    3434    }
    3535
    36     add_action( 'plugins_loaded', 'action_scheduler_register_3_dot_5_dot_1', 0, 0 );
     36    add_action( 'plugins_loaded', 'action_scheduler_register_3_dot_5_dot_2', 0, 0 );
    3737
    3838    /**
    3939     * Registers this version of Action Scheduler.
    4040     */
    41     function action_scheduler_register_3_dot_5_dot_1() {
     41    function action_scheduler_register_3_dot_5_dot_2() {
    4242        $versions = ActionScheduler_Versions::instance();
    43         $versions->register( '3.5.1', 'action_scheduler_initialize_3_dot_5_dot_1' );
     43        $versions->register( '3.5.2', 'action_scheduler_initialize_3_dot_5_dot_2' );
    4444    }
    4545
     
    4747     * Initializes this version of Action Scheduler.
    4848     */
    49     function action_scheduler_initialize_3_dot_5_dot_1() {
     49    function action_scheduler_initialize_3_dot_5_dot_2() {
    5050        // A final safety check is required even here, because historic versions of Action Scheduler
    5151        // followed a different pattern (in some unusual cases, we could reach this point and the
     
    5959    // Support usage in themes - load this version if no plugin has loaded a version yet.
    6060    if ( did_action( 'plugins_loaded' ) && ! doing_action( 'plugins_loaded' ) && ! class_exists( 'ActionScheduler', false ) ) {
    61         action_scheduler_initialize_3_dot_5_dot_1();
     61        action_scheduler_initialize_3_dot_5_dot_2();
    6262        do_action( 'action_scheduler_pre_theme_init' );
    6363        ActionScheduler_Versions::initialize_latest_version();
  • action-scheduler/tags/3.5.2/changelog.txt

    r2784104 r2786042  
    11*** Changelog ***
     2
     3= 3.5.2 - 2022-09-16 =
     4* Fix - erroneous 3.5.1 release.
    25
    36= 3.5.1 - 2022-09-13 =
  • action-scheduler/tags/3.5.2/readme.txt

    r2784104 r2786042  
    44Requires at least: 5.2
    55Tested up to: 6.0
    6 Stable tag: 3.5.1
     6Stable tag: 3.5.2
    77License: GPLv3
    88Requires PHP: 5.6
     
    4747
    4848== Changelog ==
     49
     50= 3.5.2 - 2022-09-16 =
     51* Fix - erroneous 3.5.1 release.
    4952
    5053= 3.5.1 - 2022-09-13 =
  • action-scheduler/trunk/action-scheduler.php

    r2786022 r2786042  
    66 * Author: Automattic
    77 * Author URI: https://automattic.com/
    8  * Version: 3.5.1
     8 * Version: 3.5.2
    99 * License: GPLv3
    1010 *
     
    2727 */
    2828
    29 if ( ! function_exists( 'action_scheduler_register_3_dot_5_dot_1' ) && function_exists( 'add_action' ) ) {
     29if ( ! function_exists( 'action_scheduler_register_3_dot_5_dot_2' ) && function_exists( 'add_action' ) ) {
    3030
    3131    if ( ! class_exists( 'ActionScheduler_Versions', false ) ) {
     
    3434    }
    3535
    36     add_action( 'plugins_loaded', 'action_scheduler_register_3_dot_5_dot_1', 0, 0 );
     36    add_action( 'plugins_loaded', 'action_scheduler_register_3_dot_5_dot_2', 0, 0 );
    3737
    3838    /**
    3939     * Registers this version of Action Scheduler.
    4040     */
    41     function action_scheduler_register_3_dot_5_dot_1() {
     41    function action_scheduler_register_3_dot_5_dot_2() {
    4242        $versions = ActionScheduler_Versions::instance();
    43         $versions->register( '3.5.1', 'action_scheduler_initialize_3_dot_5_dot_1' );
     43        $versions->register( '3.5.2', 'action_scheduler_initialize_3_dot_5_dot_2' );
    4444    }
    4545
     
    4747     * Initializes this version of Action Scheduler.
    4848     */
    49     function action_scheduler_initialize_3_dot_5_dot_1() {
     49    function action_scheduler_initialize_3_dot_5_dot_2() {
    5050        // A final safety check is required even here, because historic versions of Action Scheduler
    5151        // followed a different pattern (in some unusual cases, we could reach this point and the
     
    5959    // Support usage in themes - load this version if no plugin has loaded a version yet.
    6060    if ( did_action( 'plugins_loaded' ) && ! doing_action( 'plugins_loaded' ) && ! class_exists( 'ActionScheduler', false ) ) {
    61         action_scheduler_initialize_3_dot_5_dot_1();
     61        action_scheduler_initialize_3_dot_5_dot_2();
    6262        do_action( 'action_scheduler_pre_theme_init' );
    6363        ActionScheduler_Versions::initialize_latest_version();
  • action-scheduler/trunk/changelog.txt

    r2784104 r2786042  
    11*** Changelog ***
     2
     3= 3.5.2 - 2022-09-16 =
     4* Fix - erroneous 3.5.1 release.
    25
    36= 3.5.1 - 2022-09-13 =
  • action-scheduler/trunk/readme.txt

    r2784104 r2786042  
    44Requires at least: 5.2
    55Tested up to: 6.0
    6 Stable tag: 3.5.1
     6Stable tag: 3.5.2
    77License: GPLv3
    88Requires PHP: 5.6
     
    4747
    4848== Changelog ==
     49
     50= 3.5.2 - 2022-09-16 =
     51* Fix - erroneous 3.5.1 release.
    4952
    5053= 3.5.1 - 2022-09-13 =
Note: See TracChangeset for help on using the changeset viewer.