Skip to content

Commit 8bc91dc

Browse files
committed
v4.4.18
1 parent 43c787a commit 8bc91dc

File tree

5 files changed

+13
-6
lines changed

5 files changed

+13
-6
lines changed

CHANGELOG.md

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
11
# Redux Changelog
22

3-
## 4.4.17.1
3+
## 4.4.18
4+
* Fixed: #4006: XSS fix in 'color_scheme' import.
45
* Updated: Font Awesome 6.6.0
6+
* Release date: July 19, 2024
57

68
## 4.4.17
79
* Fixed: `social_profiles` in customizer.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"main": "gulpfile.js",
44
"name": "redux-framework",
55
"author": "Team Redux",
6-
"version": "4.4.17",
6+
"version": "4.4.18",
77
"license": "GPL-3.0-or-later",
88
"repository": {
99
"type": "git",

readme.txt

+6-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Tags: admin, options, theme options, plugin options, options framework
44
Requires at least: 5.0
55
Requires PHP: 7.1
66
Tested up to: 6.6
7-
Stable tag: 4.4.17
7+
Stable tag: 4.4.18
88
License: GPL-3.0+
99
License URI: http://www.gnu.org/licenses/gpl-3.0.txt
1010

@@ -121,6 +121,11 @@ NOTE: Redux is not intended to be used on its own. It requires a config file pro
121121
2. Activate the plugin through the 'Plugins' menu in WordPress.
122122

123123
== Changelog ==
124+
= 4.4.18 =
125+
* Fixed: #4006: XSS fix in 'color_scheme' import.
126+
* Updated: Font Awesome 6.6.0
127+
* Release date: July 19, 2024
128+
124129
= 4.4.17 =
125130
* Fixed: `social_profiles` in customizer.
126131
* Fixed: Section divide returning `null`, which caused a PHP warning.

redux-core/framework.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232

3333
require_once __DIR__ . '/class-redux-core.php';
3434

35-
Redux_Core::$version = '4.4.17.1';
35+
Redux_Core::$version = '4.4.18';
3636
Redux_Core::$redux_path = __DIR__;
3737
Redux_Core::instance();
3838

redux-framework.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
* Plugin URI: http://wordpress.org/plugins/redux-framework
99
* GitHub URI: reduxframework/redux-framework
1010
* Description: Build better sites in WordPress fast!
11-
* Version: 4.4.17.1
11+
* Version: 4.4.18
1212
* Requires at least: 5.0
1313
* Requires PHP: 7.1
1414
* Author: Team Redux
@@ -21,7 +21,7 @@
2121
* @package ReduxFramework
2222
* @author Team Redux
2323
* @license GNU General Public License, version 3
24-
* @copyright 2012-2023 Redux.io
24+
* @copyright 2012-2024 Redux.io
2525
*/
2626

2727
// Exit if accessed directly.

0 commit comments

Comments
 (0)