diff --git a/CHANGELOG.md b/CHANGELOG.md index 58484c821..730383381 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,10 @@ +## 1.79.3 + +* Update the `$channel` parameter in the suggested replacement for + `color.red()`, `color.green()`, `color.blue()`, `color.hue()`, + `color.saturation()`, `color.lightness()`, `color.whiteness()`, and + `color.blackness()` to use a quoted string. + ## 1.79.2 * Add a `$space` parameter to the suggested replacement for `color.red()`, diff --git a/lib/src/functions/color.dart b/lib/src/functions/color.dart index 6248a171d..7acac4562 100644 --- a/lib/src/functions/color.dart +++ b/lib/src/functions/color.dart @@ -1607,7 +1607,7 @@ BuiltInCallable _channelFunction( warnForDeprecation( "${global ? '' : 'color.'}$name() is deprecated. Suggestion:\n" "\n" - 'color.channel(\$color, $name, \$space: $space)\n' + 'color.channel(\$color, \"$name\", \$space: $space)\n' "\n" "More info: https://sass-lang.com/d/color-functions", Deprecation.colorFunctions); diff --git a/pkg/sass-parser/CHANGELOG.md b/pkg/sass-parser/CHANGELOG.md index 0cf7905c5..c8547bc44 100644 --- a/pkg/sass-parser/CHANGELOG.md +++ b/pkg/sass-parser/CHANGELOG.md @@ -1,3 +1,7 @@ +## 0.2.2 + +* No user-visible changes. + ## 0.2.1 * No user-visible changes. diff --git a/pkg/sass-parser/package.json b/pkg/sass-parser/package.json index 6d9eeba97..cfe56aeb5 100644 --- a/pkg/sass-parser/package.json +++ b/pkg/sass-parser/package.json @@ -1,6 +1,6 @@ { "name": "sass-parser", - "version": "0.2.1", + "version": "0.2.2", "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 5fdc5b1ff..deddad92a 100644 --- a/pkg/sass_api/CHANGELOG.md +++ b/pkg/sass_api/CHANGELOG.md @@ -1,3 +1,7 @@ +## 12.0.3 + +* No user-visible changes. + ## 12.0.2 * No user-visible changes. diff --git a/pkg/sass_api/pubspec.yaml b/pkg/sass_api/pubspec.yaml index 78d93db09..62e2528dc 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.2 +version: 12.0.3 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.2 + sass: 1.79.3 dev_dependencies: dartdoc: ^8.0.14 diff --git a/pubspec.yaml b/pubspec.yaml index 0ad1c05c1..aa8dd9c7e 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,5 +1,5 @@ name: sass -version: 1.79.2 +version: 1.79.3 description: A Sass implementation in Dart. homepage: https://github.com/sass/dart-sass