Skip to content

Commit

Permalink
Bump version to 3.4.10
Browse files Browse the repository at this point in the history
- Bump LibSass to version 3.4.8
- Bump spec-tests to latest master
  • Loading branch information
mgreter committed Jan 12, 2018
1 parent 0e33f21 commit 9b50135
Show file tree
Hide file tree
Showing 8 changed files with 20 additions and 7 deletions.
13 changes: 13 additions & 0 deletions Changes
Original file line number Diff line number Diff line change
@@ -1,3 +1,16 @@
CSS::Sass (3.4.10)

* Bumped libsass version to latest 3.4 stable branch (3.4.8)
* Workaround windows bug with fork and Encode
* Allow env variables to configure install
* Add Filesys::Notify::Simple dependency
* Skip spec test with invalid utf8 output
* Replace List::MoreUtils with List::Util
* Replace File::Slurp with own implementation
* Fix watchdog dependency detection

-- Marcel Greter <perl-libsass@ocbnet.ch> Fri, 12 Jan 2018 03:01:32 +0200

CSS::Sass (3.4.9)

* Bumped libsass version to latest 3.4 stable branch (3.4.7)
Expand Down
2 changes: 1 addition & 1 deletion META.json
Original file line number Diff line number Diff line change
Expand Up @@ -68,5 +68,5 @@
"url" : "https://github.com/sass/perl-libsass"
}
},
"version" : "v3.4.9"
"version" : "v3.4.10"
}
2 changes: 1 addition & 1 deletion META.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,4 +39,4 @@ resources:
homepage: https://metacpan.org/release/CSS-Sass
license: http://opensource.org/licenses/MIT
repository: https://github.com/sass/perl-libsass
version: v3.4.9
version: v3.4.10
2 changes: 1 addition & 1 deletion lib/CSS/Sass.pm
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ our @EXPORT = qw(
SASS2SCSS_CONVERT_COMMENT
);

our $VERSION = "3.4.9";
our $VERSION = "3.4.10";

require XSLoader;
XSLoader::load('CSS::Sass', $VERSION);
Expand Down
2 changes: 1 addition & 1 deletion lib/CSS/Sass/Plugins.pm
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ use warnings;

################################################################################
package CSS::Sass::Plugins;
our $VERSION = "3.4.9";
our $VERSION = "3.4.10";
################################################################################
# collect plugins
our %plugins;
Expand Down
2 changes: 1 addition & 1 deletion lib/CSS/Sass/Value.pm
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ use CSS::Sass;

################################################################################
package CSS::Sass::Value;
our $VERSION = "3.4.9";
our $VERSION = "3.4.10";
################################################################################
use CSS::Sass qw(import_sv);
use CSS::Sass qw(sass_operation);
Expand Down
2 changes: 1 addition & 1 deletion lib/CSS/Sass/Watchdog.pm
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ use CSS::Sass;

################################################################################
package CSS::Sass::Watchdog;
our $VERSION = "3.4.9";
our $VERSION = "3.4.10";
################################################################################

use Exporter 'import'; # gives you Exporter's import() method directly
Expand Down
2 changes: 1 addition & 1 deletion libsass