Skip to content

Commit

Permalink
Fix a stack overflow when setting pkg.githubReleaseNotes (#1130)
Browse files Browse the repository at this point in the history
  • Loading branch information
nex3 authored Oct 29, 2020
1 parent 5c3f550 commit 4a0da21
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 1.27.2

* No user-visible changes.

## 1.27.1

* **Potentially breaking bug fix:** `meta.load-css()` now correctly uses the
Expand Down
4 changes: 2 additions & 2 deletions pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: sass
version: 1.27.1
version: 1.27.2
description: A Sass implementation in Dart.
author: Sass Team
homepage: https://github.com/sass/dart-sass
Expand Down Expand Up @@ -34,7 +34,7 @@ dependencies:
dev_dependencies:
archive: ">=1.0.0 <3.0.0"
analyzer: "^0.40.0"
cli_pkg: "^1.0.0-beta.12"
cli_pkg: "^1.0.0-beta.13"
crypto: ">=0.9.2 <3.0.0"
dart_style: "^1.2.0"
grinder: "^0.8.0"
Expand Down
2 changes: 1 addition & 1 deletion tool/grind.dart
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ void main(List<String> args) {
"\n"
"# Changes\n"
"\n"
"${pkg.githubReleaseNotes}";
"${pkg.githubReleaseNotes.defaultValue}";

pkg.addAllTasks();
grind(args);
Expand Down

0 comments on commit 4a0da21

Please sign in to comment.