diff --git a/.travis.yml b/.travis.yml index 0a35778c8..f181c7003 100644 --- a/.travis.yml +++ b/.travis.yml @@ -187,9 +187,6 @@ jobs: - name: Chocolatey if: *deploy-if env: - # File system watching is extra flaky on Dart 2.5.0 on Windows (see - # dart-lang/sdk#38334). - - DART_VERSION=2.4.1 # CHOCO_TOKEN="..." - secure: "cW11kQYBBEElfVsc1pJfVEHOMYwt0ZK+9STZHwSPbAISlplIRnsimMN7TqCY2aLnkWXyUMU7DphIl9uQ86M4BT1bJopsHbapj27bFSlKWHlBSDB/xylFHywV41Yk5lMlr8DLMbsSzVahasyR34xS6HYIRlDpZ9TFiQuDQNJxQmqTZJg/FC+3nqCI7tyMKGkWc48ikTcmqDMHsG9CudG2u+Q3S9sLNXArh9T4tSnAyWkTvSrS05mvFx5tC83PcG9/VkioTId+VRSJchwTmCxDFDROrTikTXZMtYn8wMAQ2wQ34TQXNZMZ9uiHA6W0IuJV2EnYerJbqV2lrJq9xqZywKu6HW6i4GhrCvizALNFZx/N7s/10xuf3UcuWizYml/e0MYT+6t4ojTYBMKv+Cx+H2Y2Jdpvdn2ZAIl6LaU3pLw4OIPJ7aXjDwZd63MPxtwGwVLHbH7Zu+oUv1erIq5LtatuocGWipD8WdiMBQvyCuDRMowpLPoAbj+mevOf+xlY2Eym4tOXpxM7iY3lXFHROo5dQbhsARfVF9J1gl5PuYXvCjxqTfK/ef9t3ZoDbi57+yAJUWlZfWa5r1zKE8OS0pA8GfQRLom/Lt0wKVw4Xiofgolzd9pEHi4JpsYIQb8O+u1ACQU6nBCS87CGrQ+ylnzKfGUs0aW2K3gvbkg0LUg=" script: skip diff --git a/CHANGELOG.md b/CHANGELOG.md index 77aa86294..adfcf65f1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +## 1.23.6 + +* No user-visible changes. + ## 1.23.5 * Support inline comments in the indented syntax. diff --git a/pubspec.yaml b/pubspec.yaml index 95944b387..836ae98c8 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,5 +1,5 @@ name: sass -version: 1.23.5 +version: 1.23.6 description: A Sass implementation in Dart. author: Sass Team homepage: https://github.com/sass/dart-sass diff --git a/tool/grind/standalone.dart b/tool/grind/standalone.dart index d6d3d0688..cd10beadb 100644 --- a/tool/grind/standalone.dart +++ b/tool/grind/standalone.dart @@ -27,10 +27,11 @@ void appSnapshot() => _appSnapshot(); @Task('Build a native-code Dart executable.') void nativeExecutable() { ensureBuild(); - run(p.join(sdkDir.path, 'bin/dart2aot'), arguments: [ + run(p.join(sdkDir.path, 'bin/dart2native'), arguments: [ + '--output-kind=aot', 'bin/sass.dart', '-Dversion=$version', - 'build/sass.dart.native' + '--output=build/sass.dart.native' ]); }