From ae84edbd0e6728cb266f1ffcf3054cb25075e5df Mon Sep 17 00:00:00 2001 From: Bryan Oltman Date: Wed, 26 Jul 2023 14:02:39 -0400 Subject: [PATCH] chore(shorebird_cli): update iOS warning (#912) --- .../shorebird_cli/lib/src/commands/patch/patch_ios_command.dart | 2 +- .../lib/src/commands/release/release_ios_command.dart | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/shorebird_cli/lib/src/commands/patch/patch_ios_command.dart b/packages/shorebird_cli/lib/src/commands/patch/patch_ios_command.dart index c998f6d0..cd07c057 100644 --- a/packages/shorebird_cli/lib/src/commands/patch/patch_ios_command.dart +++ b/packages/shorebird_cli/lib/src/commands/patch/patch_ios_command.dart @@ -83,7 +83,7 @@ class PatchIosCommand extends ShorebirdCommand } logger.warn( - '''iOS support is in an experimental state and will not work without Flutter engine changes that have not yet been published.''', + '''iOS support is in an alpha state. See https://docs.shorebird.dev/faq#ios-alpha for more information.''', ); const arch = 'aarch64'; diff --git a/packages/shorebird_cli/lib/src/commands/release/release_ios_command.dart b/packages/shorebird_cli/lib/src/commands/release/release_ios_command.dart index f4ba4439..867b4b91 100644 --- a/packages/shorebird_cli/lib/src/commands/release/release_ios_command.dart +++ b/packages/shorebird_cli/lib/src/commands/release/release_ios_command.dart @@ -70,7 +70,7 @@ make smaller updates to your app. } logger.warn( - '''iOS support is in an experimental state and will not work without Flutter engine changes that have not yet been published.''', + '''iOS support is in an alpha state. See https://docs.shorebird.dev/faq#ios-alpha for more information.''', ); const platform = ReleasePlatform.ios;