Skip to content

Commit

Permalink
chore(shorebird_cli): adjust shorebird engine revision (#204)
Browse files Browse the repository at this point in the history
  • Loading branch information
felangel authored Mar 30, 2023
1 parent b67c34c commit 405fe79
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion packages/shorebird_cli/lib/src/command_runner.dart
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ Detected engine revision: "$flutterEngineRevision"''',
'''
Shorebird $packageVersion
Flutter Engine • revision $requiredFlutterEngineRevision
Shorebird Engine • revision ${shorebirdEngineRevision.substring(0, 10)}''',
Shorebird Engine • revision $shorebirdEngineRevision''',
);
exitCode = ExitCode.success.code;
} else {
Expand Down
2 changes: 1 addition & 1 deletion packages/shorebird_cli/lib/src/engine_revision.dart
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@
const requiredFlutterEngineRevision = '9aa7816315';

/// The hash of the Shorebird engine used by this version of Shorebird CLI.
const shorebirdEngineRevision = 'b6e8c4ecd973b39b7ca4fe71ca6a12b7bd361814';
const shorebirdEngineRevision = 'b6e8c4ecd9';
2 changes: 1 addition & 1 deletion packages/shorebird_cli/test/src/command_runner_test.dart
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ Tools • Dart 2.19.4 • DevTools 2.20.1
'''
Shorebird $packageVersion
Flutter Engine • revision $requiredFlutterEngineRevision
Shorebird Engine • revision ${shorebirdEngineRevision.substring(0, 10)}''',
Shorebird Engine • revision $shorebirdEngineRevision''',
),
).called(1);
});
Expand Down

0 comments on commit 405fe79

Please sign in to comment.