Merge pull request #884 from sass/fix-release

Fix release infrastructure for Dart 2.6
This commit is contained in:
Natalie Weizenbaum 2019-11-15 17:02:29 -08:00 committed by GitHub
commit ab0a2b68cc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 8 additions and 6 deletions

View File

@ -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

View File

@ -1,3 +1,7 @@
## 1.23.6
* No user-visible changes.
## 1.23.5
* Support inline comments in the indented syntax.

View File

@ -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

View File

@ -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'
]);
}