Skip to content

Commit 0122347

Browse files
authored
Merge pull request #49 from mgreter/feature/fixes-for-older-bsd
Bump version to 3.6.3. and libsass to virtual 3.6.4-r1
2 parents caa3d74 + fd3440b commit 0122347

File tree

8 files changed

+18
-7
lines changed

8 files changed

+18
-7
lines changed

Changes

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,14 @@
1+
CSS::Sass (3.6.3)
2+
3+
Maintenance release including some build fixes.
4+
Includes one other fix for libsass to fix source-map and
5+
error positions in case utf8 is used in sass/scss files.
6+
7+
* Bumped libsass version to virtual 3.6.4-r1
8+
* Fix plugin resolving on older DragonFly BSD
9+
10+
-- Marcel Greter <perl-libsass@ocbnet.ch> Mon, 4 May 2020 11:56:27 +0100
11+
112
CSS::Sass (3.6.2)
213

314
Updating libsass to version 3.6.4

META.json

Lines changed: 1 addition & 1 deletion
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.2"
71+
"version" : "v3.6.3"
7272
}

META.yml

Lines changed: 1 addition & 1 deletion
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.2
42+
version: v3.6.3

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.6.2";
72+
our $VERSION = "3.6.3";
7373

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

lib/CSS/Sass/Plugins.pm

Lines changed: 1 addition & 1 deletion
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.2";
27+
our $VERSION = "3.6.3";
2828
################################################################################
2929
# collect plugins
3030
our %plugins;

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

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

0 commit comments

Comments
 (0)