Skip to content

Commit 00ea904

Browse files
committed
Edit changelog and bump versions for 3.3.4
Update LibSass and specs to latest dev versions (pre 3.3.7)
1 parent c471d07 commit 00ea904

File tree

9 files changed

+14
-9
lines changed

9 files changed

+14
-9
lines changed

Changes

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
CSS::Sass (3.3.4)
2+
3+
* Update to latest LibSass dev release (pre 3.3.7)
4+
* Fix build edge case with EUMM 7.16 (@genehack)
5+
* Remove duplicate "m" arg from psass (@dracos)
6+
17
CSS::Sass (3.3.3)
28

39
* Update to latest LibSass release (3.3.6)

META.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,5 +63,5 @@
6363
"url" : "https://github.com/sass/perl-libsass"
6464
}
6565
},
66-
"version" : "v3.3.3"
66+
"version" : "v3.3.4"
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.3
41+
version: v3.3.4

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.3";
72+
our $VERSION = "3.3.4";
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.3";
42+
our $VERSION = "3.3.4";
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.3";
28+
our $VERSION = "3.3.4";
2929
################################################################################
3030

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

t/99_sass_specs.t

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,8 +52,7 @@ use File::Spec::Functions;
5252

5353
# everything is normalized
5454
my $norm_output = sub ($) {
55-
$_[0] =~ s/(?:\n)+/\n/g;
56-
$_[0] =~ s/(?:\r\n)+/\r\n/g;
55+
$_[0] =~ s/(?:\r?\n)+/\n/g;
5756
$_[0] =~ s/;(?:\s*;)+/;/g;
5857
$_[0] =~ s/;\s*}/}/g;
5958
};

t/sass-spec

Submodule sass-spec updated 802 files

0 commit comments

Comments
 (0)