Skip to content

Commit e664ea8

Browse files
authored
Merge pull request #1217 from Mstrodl/patch-5
Bump version
2 parents 934bdd5 + 058cf0e commit e664ea8

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
## 1.32.6
22

3+
### Node JS API
4+
5+
* Fix Electron support when `nodeIntegration` is disabled.
6+
37
### Dart API
48

59
* All range checks for `SassColor` constructors now throw `RangeError`s with

lib/src/util/number.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ num fuzzyCheckRange(num number, num min, num max) {
8686
///
8787
/// If [number] is [fuzzyEquals] to [min] or [max], it's clamped to the
8888
/// appropriate value. [name] is used in error reporting.
89-
num fuzzyAssertRange(num number, num min, num max, [String name]) {
89+
num fuzzyAssertRange(num number, int min, int max, [String name]) {
9090
var result = fuzzyCheckRange(number, min, max);
9191
if (result != null) return result;
9292
throw RangeError.range(

pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: sass
2-
version: 1.32.6-dev
2+
version: 1.32.6
33
description: A Sass implementation in Dart.
44
author: Sass Team
55
homepage: https://github.com/sass/dart-sass

0 commit comments

Comments
 (0)