Skip to content

Commit d0ca8e0

Browse files
authoredMar 10, 2023
Fix macOS arm64 build and release a new version (#1906)
* Revert "Remove workaround for dart-lang/setup-dart#59 (#1904)" This reverts commit 434f2b9. * Bump version
1 parent 8f8138d commit d0ca8e0

File tree

5 files changed

+17
-3
lines changed

5 files changed

+17
-3
lines changed
 

‎.github/workflows/ci.yml

+6
Original file line numberDiff line numberDiff line change
@@ -332,14 +332,20 @@ jobs:
332332
include:
333333
- runner: macos-latest
334334
platform: macos-x64
335+
architecture: x64
335336
- runner: self-hosted
336337
platform: macos-arm64
338+
architecture: arm64
337339
- runner: windows-latest
338340
platform: windows
341+
architecture: x64
339342

340343
steps:
341344
- uses: actions/checkout@v3
342345
- uses: dart-lang/setup-dart@v1
346+
# Workaround for dart-lang/setup-dart#59
347+
with:
348+
architecture: ${{ matrix.architecture }}
343349
- run: dart pub get
344350
- name: Deploy
345351
run: dart run grinder pkg-github-${{ matrix.platform }}

‎CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 1.59.1
2+
3+
* No user-visible changes.
4+
15
## 1.59.0
26

37
### Command Line Interface

‎pkg/sass_api/CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 6.0.1
2+
3+
* No user-visible changes.
4+
15
## 6.0.0
26

37
* **Breaking change:** All selector AST node constructors now require a

‎pkg/sass_api/pubspec.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,15 @@ name: sass_api
22
# Note: Every time we add a new Sass AST node, we need to bump the *major*
33
# version because it's a breaking change for anyone who's implementing the
44
# visitor interface(s).
5-
version: 6.0.0
5+
version: 6.0.1
66
description: Additional APIs for Dart Sass.
77
homepage: https://github.com/sass/dart-sass
88

99
environment:
1010
sdk: ">=2.17.0 <3.0.0"
1111

1212
dependencies:
13-
sass: 1.59.0
13+
sass: 1.59.1
1414

1515
dev_dependencies:
1616
dartdoc: ^5.0.0

‎pubspec.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: sass
2-
version: 1.59.0
2+
version: 1.59.1
33
description: A Sass implementation in Dart.
44
homepage: https://github.com/sass/dart-sass
55

0 commit comments

Comments
 (0)
Please sign in to comment.