Skip to content

Commit

Permalink
Merge pull request #218 from ConnectThink/sb-2.3.5
Browse files Browse the repository at this point in the history
Version 2.3.5 add selected to select
  • Loading branch information
shadoath authored Sep 8, 2021
2 parents 10b9a2a + 8744a9f commit 4b1101e
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 4 deletions.
4 changes: 3 additions & 1 deletion readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
5 changes: 4 additions & 1 deletion readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down Expand Up @@ -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)
Expand Down
4 changes: 2 additions & 2 deletions wp-scss.php
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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 ) {
Expand Down

0 comments on commit 4b1101e

Please sign in to comment.