diff --git a/CHANGELOG.md b/CHANGELOG.md index 615e2d3b3..d9a045430 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,7 +1,9 @@ # Redux Changelog -## 4.4.17.1 +## 4.4.18 +* Fixed: #4006: XSS fix in 'color_scheme' import. * Updated: Font Awesome 6.6.0 +* Release date: July 19, 2024 ## 4.4.17 * Fixed: `social_profiles` in customizer. diff --git a/package.json b/package.json index 15fc1e9d2..935ad1065 100644 --- a/package.json +++ b/package.json @@ -3,7 +3,7 @@ "main": "gulpfile.js", "name": "redux-framework", "author": "Team Redux", - "version": "4.4.17", + "version": "4.4.18", "license": "GPL-3.0-or-later", "repository": { "type": "git", diff --git a/readme.txt b/readme.txt index 0acc321ab..42f482521 100644 --- a/readme.txt +++ b/readme.txt @@ -4,7 +4,7 @@ Tags: admin, options, theme options, plugin options, options framework Requires at least: 5.0 Requires PHP: 7.1 Tested up to: 6.6 -Stable tag: 4.4.17 +Stable tag: 4.4.18 License: GPL-3.0+ License URI: http://www.gnu.org/licenses/gpl-3.0.txt @@ -121,6 +121,11 @@ NOTE: Redux is not intended to be used on its own. It requires a config file pro 2. Activate the plugin through the 'Plugins' menu in WordPress. == Changelog == += 4.4.18 = +* Fixed: #4006: XSS fix in 'color_scheme' import. +* Updated: Font Awesome 6.6.0 +* Release date: July 19, 2024 + = 4.4.17 = * Fixed: `social_profiles` in customizer. * Fixed: Section divide returning `null`, which caused a PHP warning. diff --git a/redux-core/framework.php b/redux-core/framework.php index 0a414084a..f0177d149 100644 --- a/redux-core/framework.php +++ b/redux-core/framework.php @@ -32,7 +32,7 @@ require_once __DIR__ . '/class-redux-core.php'; -Redux_Core::$version = '4.4.17.1'; +Redux_Core::$version = '4.4.18'; Redux_Core::$redux_path = __DIR__; Redux_Core::instance(); diff --git a/redux-framework.php b/redux-framework.php index 9adff7c5d..70997fc82 100644 --- a/redux-framework.php +++ b/redux-framework.php @@ -8,7 +8,7 @@ * Plugin URI: http://wordpress.org/plugins/redux-framework * GitHub URI: reduxframework/redux-framework * Description: Build better sites in WordPress fast! - * Version: 4.4.17.1 + * Version: 4.4.18 * Requires at least: 5.0 * Requires PHP: 7.1 * Author: Team Redux @@ -21,7 +21,7 @@ * @package ReduxFramework * @author Team Redux * @license GNU General Public License, version 3 - * @copyright 2012-2023 Redux.io + * @copyright 2012-2024 Redux.io */ // Exit if accessed directly.