diff --git a/CHANGELOG.md b/CHANGELOG.md index ad039a8..492dc41 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,15 @@ # Changelog All notable changes to this project will be documented in this file. +## 1.1 - 05-02-2016 + +### Enhancements +* Check if page/post supports Post Editor for displaying Post Editor Tab +* Add collapse of repeatable groups + +### Bug Fixes +* Target appropriate boxes when searching for limit for repeatable groups + ## 1.0 - 11-20-2015 * Initial expansion release diff --git a/README.md b/README.md index 5fff0d4..2c50e3a 100644 --- a/README.md +++ b/README.md @@ -18,6 +18,17 @@ CMB2 EXPANSION is a plugin which adds features to the plugin [CMB2](https://gith 1. Place the CMB2 EXPANSION directory inside of your plugins directory (typically /wp-content/plugins). 2. Activate plugin through the Plugins Admin page +### 1.1 - 05-02-2016 + +#### Enhancements + +* Check if page/post supports Post Editor for displaying Post Editor Tab +* Add collapse of repeatable groups + +#### Bug Fixes + +* Target appropriate boxes when searching for limit for repeatable groups + ### 1.0 - 11-20-2015 * Initial expansion release diff --git a/cmb2-expansion.php b/cmb2-expansion.php index 370c0bf..7a0a44f 100644 --- a/cmb2-expansion.php +++ b/cmb2-expansion.php @@ -2,7 +2,7 @@ /** * Plugin Name: CMB2 Expansion * Description: Expansion plugin for CMB2 - * Version: 1.0 + * Version: 1.1 * Author: Mike Estrada */ @@ -12,7 +12,7 @@ define( 'CMB2_EXP_DIR', plugin_dir_path(__FILE__) ); define( 'CMB2_EXP_URL', plugin_dir_url(__FILE__) ); define( 'CMB2_EXP_BASE', plugin_basename( __FILE__ ) ); -define( 'CMB2_EXP_VERSION', '1.0' ); +define( 'CMB2_EXP_VERSION', '1.1' ); // check if CMB2 class is defined (possibly use the PRE ACTIVATION hook) function cmb2_exp_expansion_plugin_init() {