Skip to content

Commit

Permalink
Merge pull request #459 from woocommerce/bump_3_1_0
Browse files Browse the repository at this point in the history
bump version to 3.1.0
  • Loading branch information
thenbrent authored Feb 13, 2020
2 parents 90454ed + ddca78b commit 400725e
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions action-scheduler.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
* Description: A robust scheduling library for use in WordPress plugins.
* Author: Automattic
* Author URI: https://automattic.com/
* Version: 3.0.1
* Version: 3.1.0
* License: GPLv3
*
* Copyright 2019 Automattic, Inc. (https://automattic.com/contact/)
Expand All @@ -25,21 +25,21 @@
*
*/

if ( ! function_exists( 'action_scheduler_register_3_dot_0_dot_1' ) ) {
if ( ! function_exists( 'action_scheduler_register_3_dot_1_dot_0' ) ) {

if ( ! class_exists( 'ActionScheduler_Versions' ) ) {
require_once( '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_0_dot_1', 0, 0 );
add_action( 'plugins_loaded', 'action_scheduler_register_3_dot_1_dot_0', 0, 0 );

function action_scheduler_register_3_dot_0_dot_1() {
function action_scheduler_register_3_dot_1_dot_0() {
$versions = ActionScheduler_Versions::instance();
$versions->register( '3.0.1', 'action_scheduler_initialize_3_dot_0_dot_1' );
$versions->register( '3.1.0', 'action_scheduler_initialize_3_dot_1_dot_0' );
}

function action_scheduler_initialize_3_dot_0_dot_1() {
function action_scheduler_initialize_3_dot_1_dot_0() {
$autoloader = __DIR__ . '/vendor/autoload.php';
if ( is_readable( $autoloader ) ) {
require_once( $autoloader );
Expand All @@ -53,7 +53,7 @@ function action_scheduler_initialize_3_dot_0_dot_1() {

// Support usage in themes - load this version if no plugin has loaded a version yet.
if ( did_action( 'plugins_loaded' ) && ! class_exists( 'ActionScheduler' ) ) {
action_scheduler_register_3_dot_0_dot_1();
action_scheduler_register_3_dot_1_dot_0();
do_action( 'action_scheduler_pre_theme_init' );
ActionScheduler_Versions::initialize_latest_version();
}
Expand Down

0 comments on commit 400725e

Please sign in to comment.