From eb19def925a3e1a12182bf071b857e2a7335028b Mon Sep 17 00:00:00 2001 From: Jared Cobb Date: Fri, 17 Jul 2015 19:40:08 -0600 Subject: [PATCH] Version bump --- README.txt | 5 ++++- ccb-core.php | 2 +- includes/class-ccb-core-plugin.php | 2 +- 3 files changed, 6 insertions(+), 3 deletions(-) diff --git a/README.txt b/README.txt index 4436f17..dae1d82 100644 --- a/README.txt +++ b/README.txt @@ -3,7 +3,7 @@ Contributors: jaredcobb Tags: ccb, church, api, chms Requires at least: 3.0.1 Tested up to: 4.2.2 -Stable tag: 0.9.2 +Stable tag: 0.9.3 License: GPLv2 or later License URI: http://www.gnu.org/licenses/gpl-2.0.html @@ -62,6 +62,9 @@ allow the group to be publicly listed. A great way to cross reference if your gr == Changelog == += 0.9.3 = +* Fixed a bug for backwards compatibility with PHP 5.2 servers + = 0.9.2 = * Added tooltips to some settings to help explain the functionality * Added better defaults for date ranges diff --git a/ccb-core.php b/ccb-core.php index f5c1322..677e492 100644 --- a/ccb-core.php +++ b/ccb-core.php @@ -10,7 +10,7 @@ * Plugin Name: Church Community Builder Core API * Plugin URI: http://www.wpccb.com * Description: A plugin to provide a core integration of the Church Community Builder API into WordPress custom post types - * Version: 0.9.2 + * Version: 0.9.3 * Author: Jared Cobb * Author URI: http://jaredcobb.com/ * License: GPL-2.0+ diff --git a/includes/class-ccb-core-plugin.php b/includes/class-ccb-core-plugin.php index 9424321..83f4b06 100644 --- a/includes/class-ccb-core-plugin.php +++ b/includes/class-ccb-core-plugin.php @@ -78,7 +78,7 @@ public function __construct() { $this->plugin_settings_name = 'ccb_core_settings'; $this->plugin_display_name = __( 'Church Community Builder Core API', $this->plugin_name ); $this->plugin_short_display_name = __( 'CCB Core API', $this->plugin_name ); - $this->version = '0.9.2'; + $this->version = '0.9.3'; }