From c3ed5479321aaf7dfaa3b6285085a2aed2fa3de5 Mon Sep 17 00:00:00 2001 From: Natalie Weizenbaum Date: Wed, 7 Jun 2023 13:32:01 -0700 Subject: [PATCH] Release 1.63.0 (#1987) --- CHANGELOG.md | 11 +++++++++++ pkg/sass_api/CHANGELOG.md | 2 +- pkg/sass_api/pubspec.yaml | 2 +- pubspec.yaml | 2 +- 4 files changed, 14 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0eed72e86..87f282029 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -16,6 +16,17 @@ package on npm. The only change is that it will now provide direct access to a `sass` executable with the same CLI as the `sass` package. +* The Dart Sass embedded compiler now uses version 2.0.0 of the Sass embedded + protocol. See [the spec][embedded-protocol-spec] for a full description of the + protocol, and [the changelog][embedded-protocol-changelog] for a summary of + changes since version 1.2.0. + + [embedded-protocol-spec]: https://github.com/sass/sass/blob/main/spec/embedded-protocol.md + [embedded-protocol-changelog]: https://github.com/sass/sass/blob/main/EMBEDDED_PROTOCOL_CHANGELOG.md + +* The Dart Sass embedded compiler now runs multiple simultaneous compilations in + parallel, rather than serially. + ## 1.62.1 * Fix a bug where `:has(+ &)` and related constructs would drop the leading diff --git a/pkg/sass_api/CHANGELOG.md b/pkg/sass_api/CHANGELOG.md index bb249278e..ad93a4b8f 100644 --- a/pkg/sass_api/CHANGELOG.md +++ b/pkg/sass_api/CHANGELOG.md @@ -1,4 +1,4 @@ -## 7.0.1 +## 7.1.0 * No user-visible changes. diff --git a/pkg/sass_api/pubspec.yaml b/pkg/sass_api/pubspec.yaml index b9147e6bf..0a4efcdf7 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: 7.0.1-dev +version: 7.1.0 description: Additional APIs for Dart Sass. homepage: https://github.com/sass/dart-sass diff --git a/pubspec.yaml b/pubspec.yaml index 5083fc106..4f4e65a3b 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,5 +1,5 @@ name: sass -version: 1.63.0-dev +version: 1.63.0 description: A Sass implementation in Dart. homepage: https://github.com/sass/dart-sass