From a8776e4c7fa998b99917fd581087560ab360317f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Carlos=20Israel=20Ortiz=20Garc=C3=ADa?= Date: Tue, 17 Sep 2024 17:38:17 -0700 Subject: [PATCH] add changelog --- CHANGELOG.md | 5 +++++ pkg/sass_api/CHANGELOG.md | 6 ++++++ pkg/sass_api/pubspec.yaml | 4 ++-- pubspec.yaml | 2 +- 4 files changed, 14 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 88a8ddd95..bb64332ed 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,8 @@ +## 1.79.2 + +* `selector.unify()` now preserves the original order of pseudo-classes and + pseudo-elements within individual selectors when combining them. + ## 1.79.1 * No user-visible changes. diff --git a/pkg/sass_api/CHANGELOG.md b/pkg/sass_api/CHANGELOG.md index 84995eba6..0a686e0e3 100644 --- a/pkg/sass_api/CHANGELOG.md +++ b/pkg/sass_api/CHANGELOG.md @@ -1,3 +1,9 @@ +## 12.0.2 + +* `unifyComplex()` and `unifyCompound()` now preserve the original order of + pseudo-classes and pseudo-elements within individual selectors when combining + them. + ## 12.0.1 * No user-visible changes. diff --git a/pkg/sass_api/pubspec.yaml b/pkg/sass_api/pubspec.yaml index 19deb9668..78d93db09 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.1 +version: 12.0.2 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.1 + sass: 1.79.2 dev_dependencies: dartdoc: ^8.0.14 diff --git a/pubspec.yaml b/pubspec.yaml index 238fa6ef2..0ad1c05c1 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,5 +1,5 @@ name: sass -version: 1.79.1 +version: 1.79.2 description: A Sass implementation in Dart. homepage: https://github.com/sass/dart-sass