Skip to content

Commit

Permalink
chore(shorebird_cli): v1.4.8 (#2594)
Browse files Browse the repository at this point in the history
  • Loading branch information
felangel authored Oct 29, 2024
1 parent 4ed439c commit 284eb5a
Show file tree
Hide file tree
Showing 6 changed files with 13 additions and 6 deletions.
6 changes: 6 additions & 0 deletions RELEASE_NOTES.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,12 @@ cspell:words pubspec erickzanardo xcframeworks Cupertino codesign codecov rkisha

This section contains past updates we've sent to customers.

## 1.4.8 (October 29, 2024)

- 📦 Add `shorebird releases get-apk` command
- 🛠️ Fix error handling when building ipa fails using Xcode 16
- 🐌 Add warning when windows artifact download is slower than expected

## 1.4.7 (October 28, 2024)

- 🐦 Support for Flutter 3.24.4
Expand Down
2 changes: 1 addition & 1 deletion packages/shorebird_cli/lib/src/executables/aot_tools.dart
Original file line number Diff line number Diff line change
Expand Up @@ -267,7 +267,7 @@ class AotTools {
if (additionalArgs.isNotEmpty) ...[
'--',
...additionalArgs,
]
],
],
workingDirectory: workingDirectory,
);
Expand Down
2 changes: 1 addition & 1 deletion packages/shorebird_cli/lib/src/version.dart

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion packages/shorebird_cli/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: shorebird_cli
description: Command-line tool to interact with Shorebird's services.
version: 1.4.7
version: 1.4.8
repository: https://github.com/shorebirdtech/shorebird

publish_to: none
Expand Down
4 changes: 2 additions & 2 deletions packages/shorebird_cli/test/src/artifact_manager_test.dart
Original file line number Diff line number Diff line change
Expand Up @@ -627,8 +627,8 @@ void main() {
final firstResult = runWithOverrides(
() => artifactManager.getXcarchiveDirectory(),
);
// The new archive directory should be selected because it was created
// after the old archive directory.
// The new archive directory should be selected because it was
// created after the old archive directory.
expect(firstResult!.path, equals(newArchiveDirectory.path));

// Now recreate the old archive directory and ensure it is selected.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -633,7 +633,8 @@ Looked in:
() => logger.info(
any(
that: contains(
'https://github.com/shorebirdtech/shorebird/issues/2532'),
'https://github.com/shorebirdtech/shorebird/issues/2532',
),
),
),
).called(1);
Expand Down

0 comments on commit 284eb5a

Please sign in to comment.