Skip to content

Commit 71dd665

Browse files
committed
4.2.14 ver bump
Signed-off-by: Kevin Provance <[email protected]>
1 parent 5fcdc9c commit 71dd665

File tree

5 files changed

+11
-5
lines changed

5 files changed

+11
-5
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
# Redux Changelog
22

3+
## 4.2.14
4+
* Fixed: Parse error in Import/Export module due to old versions of PHP. Remember folks, recommended minumim for WordPress is PHP 7.4.
5+
36
## 4.2.13
47
* Fixed: #3822 - Default value function returns string or array to prevent type error.
58
* Modified: #3820 - Better support for Redux embedded in themes.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"main": "gulpfile.js",
44
"name": "redux",
55
"author": "Redux.io",
6-
"version": "4.2.13",
6+
"version": "4.2.14",
77
"license": "GPL-3.0-or-later",
88
"repository": {
99
"type": "git",

readme.txt

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ Contributors: dovyp, redux, kprovance
33
Tags: gutenberg, blocks, gutenberg blocks, editor, block, page builder, block editor, block library, editor, templates, library
44
Requires at least: 4.0
55
Requires PHP: 7.1
6-
Tested up to: 5.8
7-
Stable tag: 4.2.13
6+
Tested up to: 5.8.1
7+
Stable tag: 4.2.14
88
License: GPL-3.0+
99
License URI: http://www.gnu.org/licenses/gpl-3.0.txt
1010

@@ -152,6 +152,9 @@ If you want, you can use the [Gutenberg](https://wordpress.org/plugins/gutenberg
152152

153153
== Changelog ==
154154

155+
= 4.2.14 =
156+
Fixed: Parse error in Import/Export module due to old versions of PHP.
157+
155158
= 4.2.13 =
156159
Fixed: #3822 - Default value function returns string or array to prevent type error.
157160
Modified: #3820 - Better support for Redux embedded in themes.

redux-core/framework.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929

3030
require_once dirname( __FILE__ ) . '/class-redux-core.php';
3131

32-
Redux_Core::$version = '4.2.13';
32+
Redux_Core::$version = '4.2.14';
3333
Redux_Core::$redux_path = dirname( __FILE__ );
3434
Redux_Core::instance();
3535

redux-framework.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
* Description: Build better sites in WordPress fast
1111
* Author: Redux.io
1212
* Author URI: http://redux.io
13-
* Version: 4.2.13
13+
* Version: 4.2.14
1414
* Text Domain: redux-framework
1515
* License: GPLv3 or later
1616
* License URI: http://www.gnu.org/licenses/gpl-3.0.txt

0 commit comments

Comments
 (0)