Skip to content

Commit 7eed1d3

Browse files
committed
Chore: Update buildYear so tests pass
1 parent 0744568 commit 7eed1d3

File tree

3 files changed

+3
-4
lines changed

3 files changed

+3
-4
lines changed

lib/data/version.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,4 @@ const int buildNumber = 25030;
88
const String buildName = '0.25.3';
99

1010
/// The year in which the current version was released.
11-
const int buildYear = 2024;
11+
const int buildYear = 2025;

scripts/bump_version.dart

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -221,8 +221,8 @@ Future<void> updateAllFiles() async {
221221

222222
// open changelog files in editor
223223
if (!quiet) {
224-
await Process.run(editor, [changelogFile.path]);
225-
await Process.run(editor, [flatpakFile.path]);
224+
await Process.run(editor, [changelogFile.path], runInShell: true);
225+
await Process.run(editor, [flatpakFile.path], runInShell: true);
226226
}
227227
}
228228

test/utils/test_mock_channel_handlers.dart

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
import 'dart:io';
22

3-
import 'package:flutter/foundation.dart';
43
import 'package:flutter/services.dart';
54
import 'package:flutter_test/flutter_test.dart';
65

0 commit comments

Comments
 (0)