Skip to content

Commit bad88c8

Browse files
authored
Merge branch '1.10.x' into master
2 parents 98fa94e + 534256a commit bad88c8

File tree

4 files changed

+23
-5
lines changed

4 files changed

+23
-5
lines changed

.travis.yml

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,15 +5,17 @@ language: ruby
55

66
env:
77
global:
8-
- DART_CHANNEL=dev
8+
- DART_CHANNEL=stable
99
- DART_VERSION=latest
1010
matrix:
1111
# Language specs, defined in sass/sass-spec
1212
- TASK=specs
13+
- TASK=specs DART_CHANNEL=dev
1314
- TASK=specs ASYNC=true
1415

1516
# Unit tests, defined in test/.
1617
- TASK=tests
18+
- TASK=tests DART_CHANNEL=dev
1719
- TASK=tests NODE_VERSION=stable
1820

1921
# Keep these up-to-date with the latest LTA Node releases. They next need to be
@@ -30,7 +32,12 @@ rvm:
3032

3133
# Only building master means that we don't run two builds for each pull request.
3234
branches:
33-
only: [master, "/^feature\\..*/", "/^\\d+\\.\\d+\\.\\d+([+-].*)?$/"]
35+
only:
36+
- master
37+
# Feature branches beginning with "feature."
38+
- "/^feature\\..*/"
39+
# Semantic version tags and legacy branches of the form "1.2.x".
40+
- "/^\\d+\\.\\d+\\.(\\d+([+-].*)?|x)$/"
3441

3542
cache:
3643
directories:

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,12 @@
2424
* The `--watch` command now continues to recompile a file after a syntax error
2525
has been detected.
2626

27+
## 1.10.4
28+
29+
### Command-Line Interface
30+
31+
* Fix a Homebrew installation failure.
32+
2733
## 1.10.3
2834

2935
### 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: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -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)