-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
29 changed files
with
1,220 additions
and
484 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,16 @@ | ||
CSS::Sass (3.6.0) | ||
|
||
First release with next major libsass version | ||
This may cause your existing sass code to break | ||
Please check the libsass changelog for breaking changes | ||
https://github.com/sass/libsass/releases/tag/3.6.0 | ||
|
||
* Bumped libsass version to latest 3.6 stable branch (3.6.0) | ||
* Added digest plugin to compute md5/base64/crc checksums | ||
* Adjusted a few test cases to match new 3.6 behaviors | ||
|
||
-- Marcel Greter <[email protected]> Thu, 19 May 2019 17:49:32 +0100 | ||
|
||
CSS::Sass (3.4.13) | ||
|
||
* Fix build failures when using clang | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -68,5 +68,5 @@ | |
"url" : "https://github.com/sass/perl-libsass" | ||
} | ||
}, | ||
"version" : "v3.5.0" | ||
"version" : "v3.6.0" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Submodule libsass
updated
3 files
+0 −6 | extconf.rb | |
+7 −1 | src/expand.cpp | |
+1 −1 | src/parser.cpp |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
From 27dd2fe0f22cd56ec6f0618b3cb3803229e06025 Mon Sep 17 00:00:00 2001 | ||
From ccc3d135322993391bfb659eabf2a25cee62f74d Mon Sep 17 00:00:00 2001 | ||
From: Marcel Greter <[email protected]> | ||
Date: Mon, 9 Jan 2017 17:51:08 +0100 | ||
Subject: [PATCH 3/3] Add script to unroll C++11 range based for loops | ||
Subject: [PATCH 01/12] Add script to unroll C++11 range based for loops | ||
|
||
--- | ||
script/replace-range-for-loops.md | 48 ++++++++++++++++++++++++++ | ||
|
@@ -12,7 +12,7 @@ Subject: [PATCH 3/3] Add script to unroll C++11 range based for loops | |
|
||
diff --git a/script/replace-range-for-loops.md b/script/replace-range-for-loops.md | ||
new file mode 100644 | ||
index 00000000..093294d5 | ||
index 00000000..66101656 | ||
--- /dev/null | ||
+++ b/script/replace-range-for-loops.md | ||
@@ -0,0 +1,48 @@ | ||
|
@@ -66,7 +66,7 @@ index 00000000..093294d5 | |
+``` | ||
diff --git a/script/replace-range-for-loops.pl b/script/replace-range-for-loops.pl | ||
new file mode 100644 | ||
index 00000000..f08d7495 | ||
index 00000000..07f47024 | ||
--- /dev/null | ||
+++ b/script/replace-range-for-loops.pl | ||
@@ -0,0 +1,57 @@ | ||
|
@@ -99,7 +99,7 @@ index 00000000..f08d7495 | |
+ my $org = $cpp; | ||
+ | ||
+ my $re_decl = qr/(?:const\s*)?\w+(?:\:\:\w+)*(?:\s*[\*\&])?/; | ||
+ my $re_val = qr/\w+(?:\(\))?(?:(?:->|\.)\w+(?:\(\))?)*/; | ||
+ my $re_val = qr/\w+(?:\[[^\]]+\])?(?:\(\))?(?:(?:->|\.)\w+(?:\(\))?)*/; | ||
+ | ||
+ $cpp =~ s/for\s*\(\s*($re_decl)\s*(\w+)\s*:\s*(\(\*?$re_val\)|\*?$re_val)\s*\)\s*{/ | ||
+ $count ++; | ||
|
Oops, something went wrong.