Skip to content

Commit 64849a4

Browse files
committed
Merge pull request #18 from sass/develop
Update libsass to 3.3.4 and prepare release 3.3.1
2 parents 419d5a8 + b696981 commit 64849a4

File tree

9 files changed

+12
-11
lines changed

9 files changed

+12
-11
lines changed

META.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@
5050
}
5151
}
5252
},
53-
"release_status" : "testing",
53+
"release_status" : "stable",
5454
"resources" : {
5555
"bugtracker" : {
5656
"web" : "https://github.com/sass/perl-libsass/issues"
@@ -63,5 +63,5 @@
6363
"url" : "https://github.com/sass/perl-libsass"
6464
}
6565
},
66-
"version" : "v3.3.0"
66+
"version" : "v3.3.1"
6767
}

META.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,4 +38,4 @@ resources:
3838
homepage: https://metacpan.org/release/CSS-Sass
3939
license: http://opensource.org/licenses/MIT
4040
repository: https://github.com/sass/perl-libsass
41-
version: v3.3.0
41+
version: v3.3.1

Makefile.PL

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,8 @@ if (-d ".git" && !$skip_git)
158158
# create manifest file via git
159159
# also add files that we generate
160160
unless ($skip_manifest) {
161-
open $manifest, ">", "MANIFEST" or die "MANIFEST: $!";
161+
open $manifest, ">:encoding(UTF-8)", "MANIFEST";
162+
die "could not create MANIFEST: $!" unless $manifest;
162163
print $manifest "MANIFEST\n";
163164
print $manifest "libsass/VERSION\n";
164165
while (my $module = shift @modules)
@@ -168,7 +169,7 @@ if (-d ".git" && !$skip_git)
168169
my $files = `git ls-files` or die "Couldn't run git: $!";
169170
my @items = split(/\n+/, $files);
170171
my @files = grep { ! -d } @items;
171-
print $manifest
172+
print $manifest grep { ! /\"/ }
172173
map { tr/\\/\//; $_ . "\n" }
173174
map { File::Spec->abs2rel($_, $base) } @files;
174175
push @modules,

lib/CSS/Sass.pm

Lines changed: 1 addition & 1 deletion
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.3.0";
72+
our $VERSION = "3.3.1";
7373

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

lib/CSS/Sass/Value.pm

Lines changed: 1 addition & 1 deletion
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.3.0";
42+
our $VERSION = "3.3.1";
4343
################################################################################
4444
use CSS::Sass qw(import_sv);
4545
use CSS::Sass qw(sass_operation);

lib/CSS/Sass/Watchdog.pm

Lines changed: 1 addition & 1 deletion
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.3.0";
28+
our $VERSION = "3.3.1";
2929
################################################################################
3030

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

t/10_sass_value_op.t

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -326,7 +326,7 @@ booleans {
326326
test-sub: true;
327327
test-custom: true-false;
328328
test-native: true-false;
329-
/*! true/false == true / false */
329+
/*! true/false == true/false */
330330
test-div: true;
331331
test-custom: true/false;
332332
test-native: true/false; }

t/sass-spec

Submodule sass-spec updated 81 files

0 commit comments

Comments
 (0)