Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

bump version to 3.1.1 #473

Merged
merged 2 commits into from
Feb 25, 2020
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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.1.0
* Version: 3.1.1
* License: GPLv3
*
* Copyright 2019 Automattic, Inc. (https://automattic.com/contact/)
Expand All @@ -25,21 +25,21 @@
*
*/

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

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_1_dot_0', 0, 0 );
add_action( 'plugins_loaded', 'action_scheduler_register_3_dot_1_dot_1', 0, 0 );

function action_scheduler_register_3_dot_1_dot_0() {
function action_scheduler_register_3_dot_1_dot_1() {
$versions = ActionScheduler_Versions::instance();
$versions->register( '3.1.0', 'action_scheduler_initialize_3_dot_1_dot_0' );
$versions->register( '3.1.1', 'action_scheduler_initialize_3_dot_1_dot_1' );
}

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

// 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_1_dot_0();
action_scheduler_initialize_3_dot_1_dot_1();
do_action( 'action_scheduler_pre_theme_init' );
ActionScheduler_Versions::initialize_latest_version();
}
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "action-scheduler",
"title": "Action Scheduler",
"version": "3.0.0",
"version": "3.1.1",
"homepage": "https://actionscheduler.org/",
"repository": {
"type": "git",
Expand Down