Skip to content

Commit

Permalink
Bump to 2.4.2 for bug-fix release
Browse files Browse the repository at this point in the history
  • Loading branch information
jtsternberg committed May 29, 2018
1 parent 778157d commit fd4effe
Show file tree
Hide file tree
Showing 17 changed files with 43 additions and 25 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
### Enhancements
### Bug Fixes

## [2.4.2 - 2018-05-25](https://github.com/CMB2/CMB2/releases/tag/v2.4.2)

### Bug Fixes

* Do not enqueue/register WordPress code editor JS if there are no `textarea_code` fields registered on the page. Fixes [#1110](https://github.com/CMB2/CMB2/issues/1110).

## [2.4.1 - 2018-05-25](https://github.com/CMB2/CMB2/releases/tag/v2.4.1)

### Bug Fixes
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
**Tags:** metaboxes, forms, fields, options, settings
**Requires at least:** 3.8.0
**Tested up to:** 4.9.6
**Stable tag:** 2.4.1
**Stable tag:** 2.4.2
**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
2 changes: 1 addition & 1 deletion css/cmb2-display-rtl.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion css/cmb2-display-rtl.min.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion css/cmb2-display.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion css/cmb2-display.min.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion css/cmb2-front-rtl.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion css/cmb2-front-rtl.min.css

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion css/cmb2-front.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion css/cmb2-front.min.css

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion css/cmb2-rtl.css
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*!
* CMB2 - v2.4.1 - 2018-05-25
* CMB2 - v2.4.2 - 2018-05-29
* https://cmb2.io
* Copyright (c) 2018
* Licensed GPLv2+
Expand Down
2 changes: 1 addition & 1 deletion css/cmb2-rtl.min.css

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion css/cmb2.css
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*!
* CMB2 - v2.4.1 - 2018-05-25
* CMB2 - v2.4.2 - 2018-05-29
* https://cmb2.io
* Copyright (c) 2018
* Licensed GPLv2+
Expand Down
2 changes: 1 addition & 1 deletion css/cmb2.min.css

Large diffs are not rendered by default.

20 changes: 10 additions & 10 deletions init.php
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
* Bill Erickson (@billerickson / billerickson.net)
* Andrew Norcross (@norcross / andrewnorcross.com)
*
* Version: 2.4.1
* Version: 2.4.2
*
* Text Domain: cmb2
* Domain Path: languages
Expand Down Expand Up @@ -54,7 +54,7 @@
* ***********************************************************************
*/

if ( ! class_exists( 'CMB2_Bootstrap_241', false ) ) {
if ( ! class_exists( 'CMB2_Bootstrap_242', false ) ) {

/**
* Handles checking for and loading the newest version of CMB2
Expand All @@ -67,15 +67,15 @@
* @license GPL-2.0+
* @link https://cmb2.io
*/
class CMB2_Bootstrap_241 {
class CMB2_Bootstrap_242 {

/**
* Current version number
*
* @var string
* @since 1.0.0
*/
const VERSION = '2.4.1';
const VERSION = '2.4.2';

/**
* Current version hook priority.
Expand All @@ -84,20 +84,20 @@ class CMB2_Bootstrap_241 {
* @var int
* @since 2.0.0
*/
const PRIORITY = 9967;
const PRIORITY = 9966;

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

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

// Make it so...
CMB2_Bootstrap_241::initiate();
CMB2_Bootstrap_242::initiate();

}// End if().
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "cmb2",
"title": "CMB2",
"version": "2.4.1",
"version": "2.4.2",
"description": "CMB2 is a developer's toolkit for building metaboxes, custom fields, and forms for WordPress that will blow your mind.",
"main": "Gruntfile.js",
"directories": {
Expand Down
14 changes: 13 additions & 1 deletion readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Donate link: https://cmb2.io
Tags: metaboxes, forms, fields, options, settings
Requires at least: 3.8.0
Tested up to: 4.9.6
Stable tag: 2.4.1
Stable tag: 2.4.2
License: GPLv2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html

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

== Changelog ==

### 2.4.2

#### Bug Fixes

* Do not enqueue/register WordPress code editor JS if there are no `textarea_code` fields registered on the page. Fixes [#1110](https://github.com/CMB2/CMB2/issues/1110).

### 2.4.1

#### Bug Fixes
Expand Down Expand Up @@ -851,6 +857,12 @@ It is now passed a null value vs saved value. If null is returned, default sanit

== Upgrade Notice ==

### 2.4.2

#### Bug Fixes

* Do not enqueue/register WordPress code editor JS if there are no `textarea_code` fields registered on the page. Fixes [#1110](https://github.com/CMB2/CMB2/issues/1110).

### 2.4.1

#### Bug Fixes
Expand Down

0 comments on commit fd4effe

Please sign in to comment.