From d76993884d638ebb67e73926d219eea884298764 Mon Sep 17 00:00:00 2001 From: Natalie Weizenbaum Date: Wed, 13 Apr 2022 15:34:02 -0700 Subject: [PATCH] Cut a release --- CHANGELOG.md | 3 +++ pkg/sass_api/CHANGELOG.md | 4 ++++ pkg/sass_api/pubspec.yaml | 4 ++-- pubspec.yaml | 2 +- 4 files changed, 10 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1c341b79a..53e6dfaeb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,9 @@ resolving imports relative to the current working directory unless `'.'` is passed as a load path. +* Fix a bug in the JS embedded host's implementation of the legacy JS API where + imports that began with `/` could crash on Windows. + ## 1.50.0 * `@extend` now treats [`:where()`] the same as `:is()`. diff --git a/pkg/sass_api/CHANGELOG.md b/pkg/sass_api/CHANGELOG.md index fec7dfb5b..2a72cbe42 100644 --- a/pkg/sass_api/CHANGELOG.md +++ b/pkg/sass_api/CHANGELOG.md @@ -1,3 +1,7 @@ +## 1.0.0-beta.42 + +* No user-visible changes. + ## 1.0.0-beta.41 * No user-visible changes. diff --git a/pkg/sass_api/pubspec.yaml b/pkg/sass_api/pubspec.yaml index ff82e71f8..7d00cde1b 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: 1.0.0-beta.41 +version: 1.0.0-beta.42 description: Additional APIs for Dart Sass. homepage: https://github.com/sass/dart-sass @@ -10,7 +10,7 @@ environment: sdk: '>=2.12.0 <3.0.0' dependencies: - sass: 1.50.0 + sass: 1.50.1 dependency_overrides: sass: {path: ../..} diff --git a/pubspec.yaml b/pubspec.yaml index d1cb6ba27..4d5a38985 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,5 +1,5 @@ name: sass -version: 1.50.1-dev +version: 1.50.1 description: A Sass implementation in Dart. homepage: https://github.com/sass/dart-sass