From 7e91457607765f529257aef0918bc2c9e9627599 Mon Sep 17 00:00:00 2001 From: Jennifer Thakar Date: Tue, 30 Aug 2022 16:46:39 -0700 Subject: [PATCH] Release 32-bit ARM on Linux (#1704) --- .github/workflows/ci.yml | 5 ++--- CHANGELOG.md | 4 ++++ pkg/sass_api/CHANGELOG.md | 4 ++++ pkg/sass_api/pubspec.yaml | 4 ++-- pubspec.yaml | 2 +- 5 files changed, 13 insertions(+), 6 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 23ce9ad9e..e94e37475 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -298,9 +298,8 @@ jobs: strategy: matrix: include: - # https://github.com/dart-lang/sdk/pull/48665 - # - arch: arm - # platform: linux/arm/v7 + - arch: arm + platform: linux/arm/v7 - arch: arm64 platform: linux/arm64 needs: [deploy_github_linux] diff --git a/CHANGELOG.md b/CHANGELOG.md index 42e01c3d0..d4bd9d421 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +## 1.54.7 + +* Add support for 32-bit ARM releases on Linux. + ## 1.54.6 * Fix a bug where a `@media` query could be incorrectly omitted from a diff --git a/pkg/sass_api/CHANGELOG.md b/pkg/sass_api/CHANGELOG.md index ab1bf93b4..2631ac5d3 100644 --- a/pkg/sass_api/CHANGELOG.md +++ b/pkg/sass_api/CHANGELOG.md @@ -1,3 +1,7 @@ +## 3.0.2 + +* No user-visible changes. + ## 3.0.1 * No user-visible chances. diff --git a/pkg/sass_api/pubspec.yaml b/pkg/sass_api/pubspec.yaml index cd3889685..0768b7892 100644 --- a/pkg/sass_api/pubspec.yaml +++ b/pkg/sass_api/pubspec.yaml @@ -2,7 +2,7 @@ name: sass_api # Note: Every time we add a new Sass AST node, we need to bump the *major* # version because it's a breaking change for anyone who's implementing the # visitor interface(s). -version: 3.0.1 +version: 3.0.2 description: Additional APIs for Dart Sass. homepage: https://github.com/sass/dart-sass @@ -10,7 +10,7 @@ environment: sdk: ">=2.17.0 <3.0.0" dependencies: - sass: 1.54.6 + sass: 1.54.7 dev_dependencies: dartdoc: ^5.0.0 diff --git a/pubspec.yaml b/pubspec.yaml index 812a9e311..f071458d9 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,5 +1,5 @@ name: sass -version: 1.54.6 +version: 1.54.7 description: A Sass implementation in Dart. homepage: https://github.com/sass/dart-sass