From 2eafa7d555c5af0ac77a0e380692dc0519ecb549 Mon Sep 17 00:00:00 2001 From: Moritz Date: Tue, 2 Jan 2024 16:45:35 +0100 Subject: [PATCH] Fix bug --- pkgs/firehose/lib/src/health/health.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/firehose/lib/src/health/health.dart b/pkgs/firehose/lib/src/health/health.dart index ea626fad..440b31fd 100644 --- a/pkgs/firehose/lib/src/health/health.dart +++ b/pkgs/firehose/lib/src/health/health.dart @@ -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; + final versionMap = decoded['version'] as Map; changeForPackage[package] = BreakingChange( level: _breakingLevel(report), oldVersion: Version.parse(versionMap['old'].toString()),