Skip to content

Commit 82b7b06

Browse files
authored
Merge pull request #438 from sass/dart-2
Support Dart 2 stable
2 parents 89ce44a + 511319a commit 82b7b06

File tree

4 files changed

+32
-15
lines changed

4 files changed

+32
-15
lines changed

.travis.yml

Lines changed: 17 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -5,38 +5,44 @@ language: ruby
55

66
env:
77
global:
8-
- DART_CHANNEL=dev
98
- DART_VERSION=latest
109
matrix:
1110
# Language specs, defined in sass/sass-spec
1211

13-
# These are disabled just for the 1.10.2 release, since it doesn't support the
12+
# These are disabled just for the 1.10.x branch, since it doesn't support the
1413
# latest specs.
15-
# - TASK=specs
16-
# - TASK=specs ASYNC=true
14+
# - DART_CHANNEL=dev TASK=specs
15+
# - DART_CHANNEL=stable TASK=specs
16+
# - DART_CHANNEL=stable TASK=specs ASYNC=true
1717

1818
# Unit tests, defined in test/.
19-
- TASK=tests
19+
- DART_CHANNEL=dev TASK=tests
20+
- DART_CHANNEL=stable TASK=tests
2021

2122
# This should be NODE_VERSION=latest, but that's breaking due to
2223
# laverdet/node-fibers#378.
23-
- TASK=tests NODE_VERSION=v10.1.0
24+
- DART_CHANNEL=stable TASK=tests NODE_VERSION=v10.1.0
2425

2526
# Keep these up-to-date with the latest LTA Node releases. They next need to be
2627
# rotated October 2018. See https://github.com/nodejs/Release.
27-
- TASK=tests NODE_VERSION=lts/boron
28-
- TASK=tests NODE_VERSION=lts/carbon
28+
- DART_CHANNEL=stable TASK=tests NODE_VERSION=lts/boron
29+
- DART_CHANNEL=stable TASK=tests NODE_VERSION=lts/carbon
2930

3031
# Miscellaneous checks.
31-
- TASK=analyze
32-
- TASK=format
32+
- DART_CHANNEL=stable TASK=analyze
33+
- DART_CHANNEL=stable TASK=format
3334

3435
rvm:
3536
- 2.3.1
3637

3738
# Only building master means that we don't run two builds for each pull request.
3839
branches:
39-
only: [master, "/^feature\\..*/", "/^\\d+\\.\\d+\\.\\d+([+-].*)?$/"]
40+
only:
41+
- master
42+
# Feature branches beginning with "feature."
43+
- "/^feature\\..*/"
44+
# Semantic version tags and legacy branches of the form "1.2.x".
45+
- "/^\\d+\\.\\d+\\.(\\d+([+-].*)?|x)$/"
4046

4147
cache:
4248
directories:

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
## 1.10.4
2+
3+
### Command-Line Interface
4+
5+
* Fix a Homebrew installation failure.
6+
17
## 1.10.3
28

39
### Command-Line Interface

appveyor.yml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,12 @@
11
build: off
22

33
branches:
4-
only: [master, /^features\..*]
4+
only:
5+
- master
6+
# Feature branches beginning with "feature."
7+
- "/^feature\\..*/"
8+
# Semantic version tags and legacy branches of the form "1.2.x".
9+
- "/^\\d+\\.\\d+\\.(\\d+([+-].*)?|x)$/"
510

611
# Don't run specs because sass-spec doesn't support Windows. They're also
712
# supposed to be platform-independent.
@@ -11,7 +16,7 @@ environment:
1116
- {TASK: tests, NODE: true}
1217

1318
install:
14-
- choco install --pre dart-sdk
19+
- choco install dart-sdk
1520
- refreshenv
1621
- pub get
1722
- ps: >-

pubspec.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: sass
2-
version: 1.10.3
2+
version: 1.10.4
33
description: A Sass implementation in Dart.
44
author: Dart Team <[email protected]>
55
homepage: https://github.com/sass/dart-sass
@@ -41,6 +41,6 @@ dev_dependencies:
4141
stream_channel: "^1.0.0"
4242
test_descriptor: "^1.1.0"
4343
test_process: "^1.0.0-rc.1"
44-
test: "^0.12.42"
44+
test: ">=0.12.42 <2.0.0"
4545
xml: ">=2.4.0 <4.0.0"
4646
yaml: "^2.0.0"

0 commit comments

Comments
 (0)