-
Notifications
You must be signed in to change notification settings - Fork 463
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Release 3.3.3 #1808
Comments
/applauds @mgreter 👏 👏 👏 👏 ^_^ |
Not really, 3.3.4 might follow shortly after (need to wait for 3.4 before all API changes are ready). |
Tying up some loose ends on the node-sass side of things. I'll tag the release in the next 48hrs. |
@mgreter we need to feature freeze before I can cut the release. Let me know when you're done. |
@xzyfer I thought you would first prepare the notes? Waiting for these, then we can freeze. |
Went ahead and created them via: use strict;
use warnings;
use pQuery;
my $loop = 1;
my $page = 0;
my $count = 0;
my $tag = "3.3.3";
while ($loop) {
$loop = 0;
$page ++;
pQuery("http://github.com/sass/libsass/issues?page=$page&q=milestone%3A$tag+is%3Aclosed")
->find('LI[id^="issue_"]')
->each(sub {
$loop = 1;
$count ++;
my $i = shift;
my $doc = pQuery($_);
my $title = $doc->find('.issue-title-link')->text;
my $user = $doc->find('.table-list-cell-avatar IMG')->attr('alt');
my $id = $doc->attr('id');
$id = $1 if $id =~ m/issue_(\d+)/;
print "- ", $title, " (", ($user ? $user : "XXX"), ", #$id)\n";
});
} |
@xzyfer can you release and test sassc? I will not have time this weekend! |
Will do. I need to spend some time getting my node sass releases working again also. |
Any progress here? |
Released SassC 3.3.3 |
🎉 |
This issues tracks the 3.3.3 release. Subscribe to this if you are waiting for a fix in that version.
The text was updated successfully, but these errors were encountered: