diff --git a/.github/workflows/build-macos.yml b/.github/workflows/build-macos.yml index d85d3e386..dd829e906 100644 --- a/.github/workflows/build-macos.yml +++ b/.github/workflows/build-macos.yml @@ -19,7 +19,7 @@ jobs: matrix: include: - arch: x64 - runner: macos-13 + runner: macos-15-intel - arch: arm64 runner: macos-latest diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index d0f205181..ab2319b86 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -124,7 +124,7 @@ jobs: - name: Copy LICENSE file run: cp LICENSE pkg/sass-types/ - name: Set the version of @sass/types - run: npm pkg set version='{{ steps.dart-sass-version.outputs.version }}' + run: npm pkg set version='${{ steps.dart-sass-version.outputs.version }}' working-directory: pkg/sass-types/ - run: npm publish env: diff --git a/CHANGELOG.md b/CHANGELOG.md index d33e32126..68f510e21 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,19 @@ +## 1.93.2 + +* No user-visible changes. + +### JavaScript API + +* Fix another error in the release process for `@sass/types`. + +## 1.93.1 + +* No user-visible changes. + +### JavaScript API + +* Fix an error in the release process for `@sass/types`. + ## 1.93.0 * Fix a crash when a style rule contains a nested `@import`, and the loaded file diff --git a/pkg/sass-parser/CHANGELOG.md b/pkg/sass-parser/CHANGELOG.md index fa36e123a..f3661143a 100644 --- a/pkg/sass-parser/CHANGELOG.md +++ b/pkg/sass-parser/CHANGELOG.md @@ -1,3 +1,11 @@ +## 0.4.31 + +* No user-visible changes. + +## 0.4.30 + +* No user-visible changes. + ## 0.4.29 * No user-visible changes. diff --git a/pkg/sass-parser/package.json b/pkg/sass-parser/package.json index c4cf3c51f..561931527 100644 --- a/pkg/sass-parser/package.json +++ b/pkg/sass-parser/package.json @@ -1,6 +1,6 @@ { "name": "sass-parser", - "version": "0.4.29", + "version": "0.4.31", "description": "A PostCSS-compatible wrapper of the official Sass parser", "repository": "sass/sass", "author": "Google Inc.", diff --git a/pkg/sass-types/package.json b/pkg/sass-types/package.json index eb3fd70f4..46edcb06f 100644 --- a/pkg/sass-types/package.json +++ b/pkg/sass-types/package.json @@ -11,5 +11,8 @@ "types": "types/index.d.ts", "files": [ "types/**/*.d.ts" - ] + ], + "publishConfig": { + "access": "public" + } } diff --git a/pkg/sass_api/CHANGELOG.md b/pkg/sass_api/CHANGELOG.md index abf0713ff..b5626bbe6 100644 --- a/pkg/sass_api/CHANGELOG.md +++ b/pkg/sass_api/CHANGELOG.md @@ -1,3 +1,11 @@ +## 15.12.2 + +* No user-visible changes. + +## 15.12.1 + +* No user-visible changes. + ## 15.12.0 * No user-visible changes. diff --git a/pkg/sass_api/pubspec.yaml b/pkg/sass_api/pubspec.yaml index c88850965..1e4eda01a 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.12.0 +version: 15.12.2 description: Additional APIs for Dart Sass. homepage: https://github.com/sass/dart-sass @@ -10,7 +10,7 @@ environment: sdk: ">=3.6.0 <4.0.0" dependencies: - sass: 1.93.0 + sass: 1.93.2 dev_dependencies: dartdoc: ^8.0.14 diff --git a/pubspec.yaml b/pubspec.yaml index 33bcbca9c..d90577e21 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,5 +1,5 @@ name: sass -version: 1.93.0 +version: 1.93.2 description: A Sass implementation in Dart. homepage: https://github.com/sass/dart-sass