Skip to content

Commit 99bfe03

Browse files
committed
Bump version to 3.6.1
1 parent 697febb commit 99bfe03

File tree

8 files changed

+21
-11
lines changed

8 files changed

+21
-11
lines changed

.travis.yml

+5-5
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,11 @@ compiler:
66
- gcc
77

88
perl:
9-
- "5.20"
10-
- "5.18"
11-
- "5.16"
12-
- "5.14"
13-
- "5.12"
9+
- "5.30"
10+
- "5.28"
11+
- "5.26"
12+
- "5.24"
13+
- "5.22"
1414

1515
install:
1616
# Deal with dependencies

Changes

+10
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
CSS::Sass (3.6.1)
2+
3+
Updating libsass to version 3.6.3
4+
Improves extend compatibility with dart-sass
5+
https://github.com/sass/libsass/releases/tag/3.6.3
6+
7+
* Bumped libsass version to latest 3.6 stable branch (3.6.3)
8+
* Fixed issue with building plugins on Mac OSX (#41)
9+
* Updated sass-spec and adjusted spec runner
10+
111
CSS::Sass (3.6.0)
212

313
First release with next major libsass version

META.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -68,5 +68,5 @@
6868
"url" : "https://github.com/sass/perl-libsass"
6969
}
7070
},
71-
"version" : "v3.6.0"
71+
"version" : "v3.6.1"
7272
}

META.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -39,4 +39,4 @@ resources:
3939
homepage: https://metacpan.org/release/CSS-Sass
4040
license: http://opensource.org/licenses/MIT
4141
repository: https://github.com/sass/perl-libsass
42-
version: v3.6.0
42+
version: v3.6.1

lib/CSS/Sass.pm

+1-1
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ our @EXPORT = qw(
6969
SASS2SCSS_CONVERT_COMMENT
7070
);
7171

72-
our $VERSION = "3.6.0";
72+
our $VERSION = "3.6.1";
7373

7474
require XSLoader;
7575
XSLoader::load('CSS::Sass', $VERSION);

lib/CSS/Sass/Plugins.pm

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ use warnings;
2424

2525
################################################################################
2626
package CSS::Sass::Plugins;
27-
our $VERSION = "3.6.0";
27+
our $VERSION = "3.6.1";
2828
################################################################################
2929
# collect plugins
3030
our %plugins;

lib/CSS/Sass/Value.pm

+1-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ use CSS::Sass;
3939

4040
################################################################################
4141
package CSS::Sass::Value;
42-
our $VERSION = "3.6.0";
42+
our $VERSION = "3.6.1";
4343
################################################################################
4444
use CSS::Sass qw(import_sv);
4545
use CSS::Sass qw(sass_operation);

lib/CSS/Sass/Watchdog.pm

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ use CSS::Sass;
2525

2626
################################################################################
2727
package CSS::Sass::Watchdog;
28-
our $VERSION = "3.6.0";
28+
our $VERSION = "3.6.1";
2929
################################################################################
3030

3131
use Exporter 'import'; # gives you Exporter's import() method directly

0 commit comments

Comments
 (0)