Skip to content

Commit

Permalink
Prep for 1.1 release
Browse files Browse the repository at this point in the history
  • Loading branch information
mae829 committed Aug 9, 2017
1 parent 64f01ba commit 1e7bbaa
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 2 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
11 changes: 11 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
4 changes: 2 additions & 2 deletions cmb2-expansion.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
/**
* Plugin Name: CMB2 Expansion
* Description: Expansion plugin for CMB2
* Version: 1.0
* Version: 1.1
* Author: Mike Estrada
*/

Expand All @@ -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() {
Expand Down

0 comments on commit 1e7bbaa

Please sign in to comment.