Skip to content

Commit ab0a2b6

Browse files
authored
Merge pull request #884 from sass/fix-release
Fix release infrastructure for Dart 2.6
2 parents 0d782fb + e1e9633 commit ab0a2b6

File tree

4 files changed

+8
-6
lines changed

4 files changed

+8
-6
lines changed

.travis.yml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -187,9 +187,6 @@ jobs:
187187
- name: Chocolatey
188188
if: *deploy-if
189189
env:
190-
# File system watching is extra flaky on Dart 2.5.0 on Windows (see
191-
# dart-lang/sdk#38334).
192-
- DART_VERSION=2.4.1
193190
# CHOCO_TOKEN="..."
194191
- secure: "cW11kQYBBEElfVsc1pJfVEHOMYwt0ZK+9STZHwSPbAISlplIRnsimMN7TqCY2aLnkWXyUMU7DphIl9uQ86M4BT1bJopsHbapj27bFSlKWHlBSDB/xylFHywV41Yk5lMlr8DLMbsSzVahasyR34xS6HYIRlDpZ9TFiQuDQNJxQmqTZJg/FC+3nqCI7tyMKGkWc48ikTcmqDMHsG9CudG2u+Q3S9sLNXArh9T4tSnAyWkTvSrS05mvFx5tC83PcG9/VkioTId+VRSJchwTmCxDFDROrTikTXZMtYn8wMAQ2wQ34TQXNZMZ9uiHA6W0IuJV2EnYerJbqV2lrJq9xqZywKu6HW6i4GhrCvizALNFZx/N7s/10xuf3UcuWizYml/e0MYT+6t4ojTYBMKv+Cx+H2Y2Jdpvdn2ZAIl6LaU3pLw4OIPJ7aXjDwZd63MPxtwGwVLHbH7Zu+oUv1erIq5LtatuocGWipD8WdiMBQvyCuDRMowpLPoAbj+mevOf+xlY2Eym4tOXpxM7iY3lXFHROo5dQbhsARfVF9J1gl5PuYXvCjxqTfK/ef9t3ZoDbi57+yAJUWlZfWa5r1zKE8OS0pA8GfQRLom/Lt0wKVw4Xiofgolzd9pEHi4JpsYIQb8O+u1ACQU6nBCS87CGrQ+ylnzKfGUs0aW2K3gvbkg0LUg="
195192
script: skip

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 1.23.6
2+
3+
* No user-visible changes.
4+
15
## 1.23.5
26

37
* Support inline comments in the indented syntax.

pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: sass
2-
version: 1.23.5
2+
version: 1.23.6
33
description: A Sass implementation in Dart.
44
author: Sass Team
55
homepage: https://github.com/sass/dart-sass

tool/grind/standalone.dart

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,10 +27,11 @@ void appSnapshot() => _appSnapshot();
2727
@Task('Build a native-code Dart executable.')
2828
void nativeExecutable() {
2929
ensureBuild();
30-
run(p.join(sdkDir.path, 'bin/dart2aot'), arguments: [
30+
run(p.join(sdkDir.path, 'bin/dart2native'), arguments: [
31+
'--output-kind=aot',
3132
'bin/sass.dart',
3233
'-Dversion=$version',
33-
'build/sass.dart.native'
34+
'--output=build/sass.dart.native'
3435
]);
3536
}
3637

0 commit comments

Comments
 (0)