Skip to content

Commit 39aa5fe

Browse files
authored
Merge pull request #192 from ConnectThink/v-2.2.0
Version bump to 2.2.0 with ScssPHP src at 1.2.1
2 parents 442144f + 06e88c8 commit 39aa5fe

File tree

3 files changed

+10
-3
lines changed

3 files changed

+10
-3
lines changed

readme.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -104,6 +104,9 @@ This plugin will only work with .scss format.
104104

105105
## Changelog
106106

107+
- 2.2.0
108+
- Updates to allow compile() from outside the plugin [niaccurshi](https://github.com/ConnectThink/WP-SCSS/pull/190)
109+
- Update src to use [ScssPHP github repo at 1.2.1](https://github.com/scssphp/scssphp/releases/tag/1.2.1)
107110
- 2.1.6
108111
- 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)
109112
- Allow setting Base Directory to Parent theme folder. [Shadoath](https://github.com/ConnectThink/WP-SCSS/issues/178)

readme.txt

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ Plugin URI: https://github.com/ConnectThink/WP-SCSS
55
Requires at least: 3.0.1
66
Tested up to: 5.7.1
77
Requires PHP: 5.6
8-
Stable tag: 2.1.6
8+
Stable tag: 2.2.0
99
License: GPLv3 or later
1010
License URI: http://www.gnu.org/copyleft/gpl.html
1111

@@ -76,6 +76,10 @@ If you are having issues with the plugin, create an issue on [github](https://gi
7676

7777
== Changelog ==
7878

79+
= 2.2.0 =
80+
- Updates to allow compile() from outside the plugin [niaccurshi](https://github.com/ConnectThink/WP-SCSS/pull/190)
81+
- Update src to use [ScssPHP github repo at 1.2.1](https://github.com/scssphp/scssphp/releases/tag/1.2.1)
82+
7983
= 2.1.6 =
8084
- 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)
8185
- Allow setting Base Directory to Parent theme folder. [Shadoath](https://github.com/ConnectThink/WP-SCSS/issues/178)

wp-scss.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
* Plugin Name: WP-SCSS
44
* Plugin URI: https://github.com/ConnectThink/WP-SCSS
55
* Description: Compiles scss files live on WordPress.
6-
* Version: 2.1.6
6+
* Version: 2.2.0
77
* Author: Connect Think
88
* Author URI: http://connectthink.com
99
* License: GPLv3
@@ -44,7 +44,7 @@
4444
define('WPSCSS_VERSION_KEY', 'wpscss_version');
4545

4646
if (!defined('WPSCSS_VERSION_NUM'))
47-
define('WPSCSS_VERSION_NUM', '2.1.6');
47+
define('WPSCSS_VERSION_NUM', '2.2.0');
4848

4949
// Add version to options table
5050
if ( get_option( WPSCSS_VERSION_KEY ) !== false ) {

0 commit comments

Comments
 (0)