From 5fa04d3dbcdbf0911506d11e1847ac64f2fc9f7d Mon Sep 17 00:00:00 2001 From: Natalie Weizenbaum Date: Wed, 18 Sep 2024 00:08:29 +0000 Subject: [PATCH] Fix sass-parser publishing (#2349) --- .github/workflows/release.yml | 2 ++ CHANGELOG.md | 4 ++++ pkg/sass_api/CHANGELOG.md | 4 ++++ pkg/sass_api/pubspec.yaml | 4 ++-- pubspec.yaml | 2 +- 5 files changed, 13 insertions(+), 3 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 077b23dba..ec00ef659 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -138,10 +138,12 @@ jobs: # The repo package has a file dependency, but the released version needs # a real dependency on the released version of Sass. - run: npm install sass@${{ steps.version.outputs.version }} + working-directory: pkg/sass-parser/ - run: npm publish env: NODE_AUTH_TOKEN: '${{ secrets.NPM_TOKEN }}' + working-directory: pkg/sass-parser/ - name: Get version id: version diff --git a/CHANGELOG.md b/CHANGELOG.md index e7250d48b..88a8ddd95 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +## 1.79.1 + +* No user-visible changes. + ## 1.79.0 * **Breaking change**: Passing a number with unit `%` to the `$alpha` parameter diff --git a/pkg/sass_api/CHANGELOG.md b/pkg/sass_api/CHANGELOG.md index 6731f41e5..84995eba6 100644 --- a/pkg/sass_api/CHANGELOG.md +++ b/pkg/sass_api/CHANGELOG.md @@ -1,3 +1,7 @@ +## 12.0.1 + +* No user-visible changes. + ## 12.0.0 * **Breaking change:** Remove the `SassApiColor.hasCalculatedRgb` and diff --git a/pkg/sass_api/pubspec.yaml b/pkg/sass_api/pubspec.yaml index 26ae0c0bd..19deb9668 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: 12.0.0 +version: 12.0.1 description: Additional APIs for Dart Sass. homepage: https://github.com/sass/dart-sass @@ -10,7 +10,7 @@ environment: sdk: ">=3.0.0 <4.0.0" dependencies: - sass: 1.79.0 + sass: 1.79.1 dev_dependencies: dartdoc: ^8.0.14 diff --git a/pubspec.yaml b/pubspec.yaml index f9e04c1c3..238fa6ef2 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,5 +1,5 @@ name: sass -version: 1.79.0 +version: 1.79.1 description: A Sass implementation in Dart. homepage: https://github.com/sass/dart-sass