Skip to content

Commit

Permalink
Update dependencies latest 3.5 versions
Browse files Browse the repository at this point in the history
  • Loading branch information
mgreter authored and Marcel Greter committed Feb 7, 2018
1 parent 46654a3 commit 5890a94
Show file tree
Hide file tree
Showing 14 changed files with 14 additions and 14 deletions.
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.11"
"version" : "v3.5.0"
}
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.11
version: v3.5.0
2 changes: 1 addition & 1 deletion Sass.xs
Original file line number Diff line number Diff line change
Expand Up @@ -204,7 +204,7 @@ union Sass_Value* sv_to_sass_value(SV* sv)
enum Sass_Separator sep = SASS_COMMA;
// special check for space separated lists
if (sv_derived_from(org, "CSS::Sass::Value::List::Space")) sep = SASS_SPACE;
union Sass_Value* list = sass_make_list(av_len(av) + 1, sep); // , false
union Sass_Value* list = sass_make_list(av_len(av) + 1, sep, false);
size_t i;
for (i = 0; i < sass_list_get_length(list); i++) {
SV** value_svp = av_fetch(av, i, false);
Expand Down
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.11";
our $VERSION = "3.5.0";

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.11";
our $VERSION = "3.5.0";
################################################################################
# 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.11";
our $VERSION = "3.5.0";
################################################################################
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.11";
our $VERSION = "3.5.0";
################################################################################

use Exporter 'import'; # gives you Exporter's import() method directly
Expand Down
2 changes: 1 addition & 1 deletion plugins/digest
Submodule digest updated 1 files
+1 −1 CMakeLists.txt
2 changes: 1 addition & 1 deletion plugins/glob
Submodule glob updated 2 files
+1 −1 CMakeLists.txt
+1 −5 src/glob.cpp
2 changes: 1 addition & 1 deletion plugins/img-size
Submodule img-size updated 1 files
+7 −3 src/img-size.cpp
2 changes: 1 addition & 1 deletion plugins/math
Submodule math updated 2 files
+1 −2 CMakeLists.txt
+4 −4 README.md
2 changes: 1 addition & 1 deletion plugins/sassc
2 changes: 1 addition & 1 deletion t/sass-spec
Submodule sass-spec updated 774 files

0 comments on commit 5890a94

Please sign in to comment.