From a0f5f2c87702809fed23043863b3e93b0190795e Mon Sep 17 00:00:00 2001 From: Jared Cobb Date: Thu, 14 Jun 2018 16:55:02 -0600 Subject: [PATCH] Version bump --- README.txt | 7 +++++-- ccb-core.php | 4 ++-- 2 files changed, 7 insertions(+), 4 deletions(-) diff --git a/README.txt b/README.txt index bd33d90..710faf0 100644 --- a/README.txt +++ b/README.txt @@ -2,8 +2,8 @@ Contributors: jaredcobb Tags: ccb, church, api, chms Requires at least: 4.6.0 -Tested up to: 4.9.5 -Stable tag: 1.0.5 +Tested up to: 4.9.6 +Stable tag: 1.0.6 License: GPLv2 or later License URI: http://www.gnu.org/licenses/gpl-2.0.html @@ -61,6 +61,9 @@ You'll need to ensure your [group settings](https://churchcommunitybuilder.force == Changelog == += 1.0.6 = +* Fixes a bug where admin libraries may not be loaded under some cron contexts. + = 1.0.5 = * Fixes a bug where events could be duplicated on subsequent synchronizations. diff --git a/ccb-core.php b/ccb-core.php index 07621d9..e679eff 100644 --- a/ccb-core.php +++ b/ccb-core.php @@ -10,7 +10,7 @@ * Plugin Name: Church Community Builder Core API * Plugin URI: https://www.wpccb.com * Description: A plugin to provide a core integration of the Church Community Builder API into WordPress custom post types - * Version: 1.0.5 + * Version: 1.0.6 * Author: Jared Cobb * Author URI: https://www.jaredcobb.com/ * License: GPL-2.0+ @@ -27,7 +27,7 @@ define( 'CCB_CORE_PATH', plugin_dir_path( __FILE__ ) ); define( 'CCB_CORE_URL', plugin_dir_url( __FILE__ ) ); define( 'CCB_CORE_BASENAME', plugin_basename( __FILE__ ) ); -define( 'CCB_CORE_VERSION', '1.0.5' ); +define( 'CCB_CORE_VERSION', '1.0.6' ); // Check minimum requirements before proceeding. require_once CCB_CORE_PATH . 'includes/class-ccb-core-requirements.php';