From 89a5394639688ad5ad5677fb6258f39fd74f95b9 Mon Sep 17 00:00:00 2001 From: Natalie Weizenbaum Date: Tue, 14 Jan 2025 06:20:51 +0000 Subject: [PATCH] Fix more bugs in the sass-parser release process (#2491) --- .github/workflows/release.yml | 3 ++- CHANGELOG.md | 4 ++++ pkg/sass-parser/CHANGELOG.md | 4 ++++ pkg/sass-parser/package.json | 2 +- pkg/sass_api/CHANGELOG.md | 4 ++++ pkg/sass_api/pubspec.yaml | 4 ++-- pubspec.yaml | 2 +- 7 files changed, 18 insertions(+), 5 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index f7d9fcfd1..c843b7483 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -132,10 +132,11 @@ jobs: - name: Get Dart Sass version id: dart-sass-version run: echo "version=${GITHUB_REF##*/}" | tee --append "$GITHUB_OUTPUT" - - run: npm install sass@${{ steps.dart-sassversion.outputs.version }} + - run: npm install sass@${{ steps.dart-sass-version.outputs.version }} working-directory: pkg/sass-parser/ - run: npm run compile + working-directory: pkg/sass-parser/ - run: npm publish env: NODE_AUTH_TOKEN: '${{ secrets.NPM_TOKEN }}' diff --git a/CHANGELOG.md b/CHANGELOG.md index 4cf492d97..086c8055e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +## 1.83.4 + +* No user-visible changes. + ## 1.83.3 * No user-visible changes. diff --git a/pkg/sass-parser/CHANGELOG.md b/pkg/sass-parser/CHANGELOG.md index 4a27d22ff..01368d49d 100644 --- a/pkg/sass-parser/CHANGELOG.md +++ b/pkg/sass-parser/CHANGELOG.md @@ -1,3 +1,7 @@ +## 0.4.12 + +* Fix more bugs in the automated release process. + ## 0.4.11 * Fix the automated release process. diff --git a/pkg/sass-parser/package.json b/pkg/sass-parser/package.json index 371178c91..a2b4d812a 100644 --- a/pkg/sass-parser/package.json +++ b/pkg/sass-parser/package.json @@ -1,6 +1,6 @@ { "name": "sass-parser", - "version": "0.4.11", + "version": "0.4.12", "description": "A PostCSS-compatible wrapper of the official Sass parser", "repository": "sass/sass", "author": "Google Inc.", diff --git a/pkg/sass_api/CHANGELOG.md b/pkg/sass_api/CHANGELOG.md index a6601c6d6..c68a2f070 100644 --- a/pkg/sass_api/CHANGELOG.md +++ b/pkg/sass_api/CHANGELOG.md @@ -1,3 +1,7 @@ +## 15.0.4 + +* No user-visible changes. + ## 15.0.3 * No user-visible changes. diff --git a/pkg/sass_api/pubspec.yaml b/pkg/sass_api/pubspec.yaml index cf72cedc4..8ec0f5503 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: 15.0.3 +version: 15.0.4 description: Additional APIs for Dart Sass. homepage: https://github.com/sass/dart-sass @@ -10,7 +10,7 @@ environment: sdk: ">=3.3.0 <4.0.0" dependencies: - sass: 1.83.3 + sass: 1.83.4 dev_dependencies: dartdoc: ^8.0.14 diff --git a/pubspec.yaml b/pubspec.yaml index 1e8d1be69..51fe325d2 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,5 +1,5 @@ name: sass -version: 1.83.3 +version: 1.83.4 description: A Sass implementation in Dart. homepage: https://github.com/sass/dart-sass