diff --git a/README.txt b/README.txt index 1c03932..5faf81f 100644 --- a/README.txt +++ b/README.txt @@ -2,8 +2,8 @@ Contributors: jaredcobb Tags: ccb, church, api, chms Requires at least: 3.0.1 -Tested up to: 4.3.0 -Stable tag: 0.9.5 +Tested up to: 4.3.1 +Stable tag: 0.9.6 License: GPLv2 or later License URI: http://www.gnu.org/licenses/gpl-2.0.html @@ -66,6 +66,10 @@ allow the group to be publicly listed. A great way to cross reference if your gr == Changelog == += 0.9.6 = +* Added automatic flushing of rewrite rules when custom post type settings are changed +* Added link to official documentation in README and About page + = 0.9.5 = * Added an option to import Group Images as the Featured Image (no longer referencing the CCB CDN location which expires quickly) * Added filters which allow you to customize the API to Custom Post Type mappings: diff --git a/ccb-core.php b/ccb-core.php index b06f2ee..30470b6 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.5 + * Version: 0.9.6 * 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 f97a025..cce6326 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.5'; + $this->version = '0.9.6'; add_theme_support( 'post-thumbnails' ); }