diff --git a/readme.md b/readme.md index 1bc524b..dbb7b4f 100644 --- a/readme.md +++ b/readme.md @@ -104,6 +104,9 @@ This plugin will only work with .scss format. ## Changelog +- 2.2.0 + - Updates to allow compile() from outside the plugin [niaccurshi](https://github.com/ConnectThink/WP-SCSS/pull/190) + - Update src to use [ScssPHP github repo at 1.2.1](https://github.com/scssphp/scssphp/releases/tag/1.2.1) - 2.1.6 - When enqueueing CSS files Defer to WordPress for URLs instead of trying to guess them. Change by [mmcev106](https://github.com/ConnectThink/WP-SCSS/pull/185) - Allow setting Base Directory to Parent theme folder. [Shadoath](https://github.com/ConnectThink/WP-SCSS/issues/178) diff --git a/readme.txt b/readme.txt index 07897b4..6a38def 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.7.1 Requires PHP: 5.6 -Stable tag: 2.1.6 +Stable tag: 2.2.0 License: GPLv3 or later License URI: http://www.gnu.org/copyleft/gpl.html @@ -76,6 +76,10 @@ If you are having issues with the plugin, create an issue on [github](https://gi == Changelog == += 2.2.0 = + - Updates to allow compile() from outside the plugin [niaccurshi](https://github.com/ConnectThink/WP-SCSS/pull/190) + - Update src to use [ScssPHP github repo at 1.2.1](https://github.com/scssphp/scssphp/releases/tag/1.2.1) + = 2.1.6 = - When enqueueing CSS files Defer to WordPress for URLs instead of trying to guess them. Change by [mmcev106](https://github.com/ConnectThink/WP-SCSS/pull/185) - Allow setting Base Directory to Parent theme folder. [Shadoath](https://github.com/ConnectThink/WP-SCSS/issues/178) diff --git a/wp-scss.php b/wp-scss.php index a3332b1..0be31bc 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.1.6 + * Version: 2.2.0 * 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.1.6'); + define('WPSCSS_VERSION_NUM', '2.2.0'); // Add version to options table if ( get_option( WPSCSS_VERSION_KEY ) !== false ) {