From 8744a9fc01416b3448c4e40fddc3279b9bdf3887 Mon Sep 17 00:00:00 2001 From: Skylar Bolton Date: Tue, 7 Sep 2021 21:34:20 -0400 Subject: [PATCH] vbump and notes --- readme.md | 4 +++- readme.txt | 5 ++++- wp-scss.php | 4 ++-- 3 files changed, 9 insertions(+), 4 deletions(-) diff --git a/readme.md b/readme.md index 4e8c7d4..b7e6536 100644 --- a/readme.md +++ b/readme.md @@ -110,9 +110,11 @@ This plugin will only work with .scss format. ## Changelog +- 2.3.5 + - Add 'selected' to wp_kses on select() [shadoath](https://github.com/ConnectThink/WP-SCSS/issues/217) - 2.3.4 - Add check to compiling_options on load() [alianschiavoncini](https://github.com/ConnectThink/WP-SCSS/issues/209) - - Add more params to wp_kses in options() [evHaitch ](https://github.com/ConnectThink/WP-SCSS/issues/213) + - Add more params to wp_kses in options() [evHaitch](https://github.com/ConnectThink/WP-SCSS/issues/213) - 2.3.3 - Fix params passed to wp_kses() [shadoath](https://github.com/ConnectThink/WP-SCSS/pull/211) - 2.3.2 diff --git a/readme.txt b/readme.txt index ba8766a..d681c97 100644 --- a/readme.txt +++ b/readme.txt @@ -5,7 +5,7 @@ Plugin URI: https://github.com/ConnectThink/WP-SCSS Requires at least: 3.0.1 Tested up to: 5.8 Requires PHP: 5.6 -Stable tag: 2.3.4 +Stable tag: 2.3.5 License: GPLv3 or later License URI: http://www.gnu.org/copyleft/gpl.html @@ -76,6 +76,9 @@ If you are having issues with the plugin, create an issue on [github](https://gi == Changelog == += 2.3.5 = + - Add 'selected' to wp_kses on select() [shadoath](https://github.com/ConnectThink/WP-SCSS/issues/217) + = 2.3.4 = - Add check to compiling_options on load() [alianschiavoncini](https://github.com/ConnectThink/WP-SCSS/issues/209) - Add more params to wp_kses in options() [evHaitch ](https://github.com/ConnectThink/WP-SCSS/issues/213) diff --git a/wp-scss.php b/wp-scss.php index ffe330c..1a8bcfd 100644 --- a/wp-scss.php +++ b/wp-scss.php @@ -3,7 +3,7 @@ * Plugin Name: WP-SCSS * Plugin URI: https://github.com/ConnectThink/WP-SCSS * Description: Compiles scss files live on WordPress. - * Version: 2.3.4 + * Version: 2.3.5 * Author: Connect Think * Author URI: http://connectthink.com * License: GPLv3 @@ -44,7 +44,7 @@ define('WPSCSS_VERSION_KEY', 'wpscss_version'); if (!defined('WPSCSS_VERSION_NUM')) - define('WPSCSS_VERSION_NUM', '2.3.4'); + define('WPSCSS_VERSION_NUM', '2.3.5'); // Add version to options table if ( get_option( WPSCSS_VERSION_KEY ) !== false ) {