Skip to content

Commit

Permalink
Fix bug
Browse files Browse the repository at this point in the history
  • Loading branch information
mosuem committed Jan 2, 2024
1 parent ea3ff00 commit 2eafa7d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkgs/firehose/lib/src/health/health.dart
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ Documentation at https://github.com/dart-lang/ecosystem/wiki/Publishing-automati
var formattedChanges = const JsonEncoder.withIndent(' ').convert(report);
print('Breaking change report:\n$formattedChanges');

final versionMap = decoded['version'] as Map<String, Object>;
final versionMap = decoded['version'] as Map<String, dynamic>;
changeForPackage[package] = BreakingChange(
level: _breakingLevel(report),
oldVersion: Version.parse(versionMap['old'].toString()),
Expand Down

0 comments on commit 2eafa7d

Please sign in to comment.