From 20265a6d70dd41b1d4ca651e38fe16c8a150fd4b Mon Sep 17 00:00:00 2001 From: Natalie Weizenbaum Date: Thu, 13 Jan 2022 18:05:40 -0800 Subject: [PATCH] Cut a release This also adds a CHANGELOG entry for the TS declaration fix for LegacyPluginThis.options.linefeed. --- CHANGELOG.md | 5 +++++ pkg/sass_api/CHANGELOG.md | 4 ++++ pkg/sass_api/pubspec.yaml | 4 ++-- pubspec.yaml | 2 +- 4 files changed, 12 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ded183b89..b130add7d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,11 @@ * Fix a bug in `string.insert` with certain negative indices. +#### TypeScript Declarations + +* Fix a bug where `LegacyPluginThis.options.linefeed` was typed to return + abbreviations when it actually returned literal linefeed characters. + ## 1.48.0 ### JS API diff --git a/pkg/sass_api/CHANGELOG.md b/pkg/sass_api/CHANGELOG.md index 0037bc757..ea802d653 100644 --- a/pkg/sass_api/CHANGELOG.md +++ b/pkg/sass_api/CHANGELOG.md @@ -1,3 +1,7 @@ +## 1.0.0-beta.29 + +* No user-visible changes. + ## 1.0.0-beta.28 * No user-visible changes. diff --git a/pkg/sass_api/pubspec.yaml b/pkg/sass_api/pubspec.yaml index 59d013483..976cf5fc7 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.28 +version: 1.0.0-beta.29 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.48.0 + sass: 1.48.1 dependency_overrides: sass: {path: ../..} diff --git a/pubspec.yaml b/pubspec.yaml index 4e83b80a6..ce891f9be 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,5 +1,5 @@ name: sass -version: 1.48.1-dev +version: 1.48.1 description: A Sass implementation in Dart. homepage: https://github.com/sass/dart-sass