Skip to content

Commit

Permalink
Update version, prepare for release
Browse files Browse the repository at this point in the history
  • Loading branch information
jtsternberg committed Nov 8, 2016
1 parent 07075d6 commit 17677cf
Show file tree
Hide file tree
Showing 4 changed files with 38 additions and 12 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Expand Up @@ -6,9 +6,11 @@ All notable changes to this project will be documented in this file.
## 2.2.3.1 - 2016-11-08

### Enhancements

* Better styling for disabled group "X" buttons, and add title attr. Fixes [#773](https://github.com/WebDevStudios/CMB2/issues/773).

### Bug Fixes

* Use quotes for `label[for=""]` selector. Fixed `Syntax error, unrecognized expression`. Props [@anhskohbo](https://github.com/anhskohbo) ([#789](https://github.com/WebDevStudios/CMB2/pull/789)).
* Fix `ReferenceError: tinyMCE is not defined` javascript errors (happening when trying to remove a repeatable field/group). Fixes [#790](https://github.com/WebDevStudios/CMB2/issues/790), and [#730](https://github.com/WebDevStudios/CMB2/issues/730).
* Fix REST API `'show_in_rest'` examples in `example-functions.php`. Any REST API boxes/fields must use the `'cmb2_init'` hook (as opposed to the `'cmb2_admin_init'` hook).
Expand Down
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -14,7 +14,7 @@
**Tags:** metaboxes, forms, fields, options, settings
**Requires at least:** 3.8.0
**Tested up to:** 4.4.2
**Stable tag:** 2.2.3
**Stable tag:** 2.2.3.1
**License:** GPLv2 or later
**License URI:** [http://www.gnu.org/licenses/gpl-2.0.html](http://www.gnu.org/licenses/gpl-2.0.html)

Expand Down
20 changes: 10 additions & 10 deletions init.php
Expand Up @@ -17,7 +17,7 @@
* Bill Erickson (@billerickson / billerickson.net)
* Andrew Norcross (@norcross / andrewnorcross.com)
*
* Version: 2.2.3
* Version: 2.2.3.1
*
* Text Domain: cmb2
* Domain Path: languages
Expand Down Expand Up @@ -48,7 +48,7 @@
or things might explode!
*************************************************************************/

if ( ! class_exists( 'CMB2_Bootstrap_224_Trunk', false ) ) {
if ( ! class_exists( 'CMB2_Bootstrap_2231', false ) ) {

/**
* Handles checking for and loading the newest version of CMB2
Expand All @@ -61,14 +61,14 @@
* @license GPL-2.0+
* @link http://webdevstudios.com
*/
class CMB2_Bootstrap_224_Trunk {
class CMB2_Bootstrap_2231 {

/**
* Current version number
* @var string
* @since 1.0.0
*/
const VERSION = '2.2.3';
const VERSION = '2.2.3.1';

/**
* Current version hook priority.
Expand All @@ -77,20 +77,20 @@ class CMB2_Bootstrap_224_Trunk {
* @var int
* @since 2.0.0
*/
const PRIORITY = 9979;
const PRIORITY = 9978;

/**
* Single instance of the CMB2_Bootstrap_224_Trunk object
* Single instance of the CMB2_Bootstrap_2231 object
*
* @var CMB2_Bootstrap_224_Trunk
* @var CMB2_Bootstrap_2231
*/
public static $single_instance = null;

/**
* Creates/returns the single instance CMB2_Bootstrap_224_Trunk object
* Creates/returns the single instance CMB2_Bootstrap_2231 object
*
* @since 2.0.0
* @return CMB2_Bootstrap_224_Trunk Single instance object
* @return CMB2_Bootstrap_2231 Single instance object
*/
public static function initiate() {
if ( null === self::$single_instance ) {
Expand Down Expand Up @@ -181,6 +181,6 @@ public function l10ni18n() {
}

// Make it so...
CMB2_Bootstrap_224_Trunk::initiate();
CMB2_Bootstrap_2231::initiate();

}
26 changes: 25 additions & 1 deletion readme.txt
Expand Up @@ -4,7 +4,7 @@ Donate link: http://webdevstudios.com
Tags: metaboxes, forms, fields, options, settings
Requires at least: 3.8.0
Tested up to: 4.4.2
Stable tag: 2.2.3
Stable tag: 2.2.3.1
License: GPLv2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html

Expand Down Expand Up @@ -115,6 +115,18 @@ FAQ's usually end up in the [github wiki](https://github.com/WebDevStudios/CMB2/

== Changelog ==

### 2.2.3.1 - 2016-11-08

#### Enhancements

* Better styling for disabled group "X" buttons, and add title attr. Fixes [#773](https://github.com/WebDevStudios/CMB2/issues/773).

#### Bug Fixes

* Use quotes for `label[for=""]` selector. Fixed `Syntax error, unrecognized expression`. Props [@anhskohbo](https://github.com/anhskohbo) ([#789](https://github.com/WebDevStudios/CMB2/pull/789)).
* Fix `ReferenceError: tinyMCE is not defined` javascript errors (happening when trying to remove a repeatable field/group). Fixes [#790](https://github.com/WebDevStudios/CMB2/issues/790), and [#730](https://github.com/WebDevStudios/CMB2/issues/730).
* Fix REST API `'show_in_rest'` examples in `example-functions.php`. Any REST API boxes/fields must use the `'cmb2_init'` hook (as opposed to the `'cmb2_admin_init'` hook).

### 2.2.3 - 2016-10-25

#### Enhancements
Expand Down Expand Up @@ -620,6 +632,18 @@ It is now passed a null value vs saved value. If null is returned, default sanit

== Upgrade Notice ==

### 2.2.3.1 - 2016-11-08

#### Enhancements

* Better styling for disabled group "X" buttons, and add title attr. Fixes [#773](https://github.com/WebDevStudios/CMB2/issues/773).

#### Bug Fixes

* Use quotes for `label[for=""]` selector. Fixed `Syntax error, unrecognized expression`. Props [@anhskohbo](https://github.com/anhskohbo) ([#789](https://github.com/WebDevStudios/CMB2/pull/789)).
* Fix `ReferenceError: tinyMCE is not defined` javascript errors (happening when trying to remove a repeatable field/group). Fixes [#790](https://github.com/WebDevStudios/CMB2/issues/790), and [#730](https://github.com/WebDevStudios/CMB2/issues/730).
* Fix REST API `'show_in_rest'` examples in `example-functions.php`. Any REST API boxes/fields must use the `'cmb2_init'` hook (as opposed to the `'cmb2_admin_init'` hook).

### 2.2.3 - 2016-10-25

#### Enhancements
Expand Down

0 comments on commit 17677cf

Please sign in to comment.