diff --git a/CHANGELOG.md b/CHANGELOG.md index 42c057d7a555..55c2cb9f8e10 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,9 @@ +## 3.4.2 + +This is a patch release that: + +- Marks `dart compile wasm` as no longer experimental. + ## 3.4.1 - 2024-05-22 This is a patch release that: diff --git a/pkg/dart2wasm/lib/dart2wasm.dart b/pkg/dart2wasm/lib/dart2wasm.dart index 53535fc2c5a6..f4bf8141939c 100644 --- a/pkg/dart2wasm/lib/dart2wasm.dart +++ b/pkg/dart2wasm/lib/dart2wasm.dart @@ -123,9 +123,6 @@ WasmCompilerOptions parseArguments(List arguments) { Never usage() { print("Usage: dart2wasm [] "); print(""); - print("*NOTE*: Wasm compilation is experimental."); - print("The support may change, or be removed, with no advance notice."); - print(""); print("Options:"); for (String line in parser.usage.split('\n')) { print('\t$line'); diff --git a/pkg/dartdev/lib/src/commands/compile.dart b/pkg/dartdev/lib/src/commands/compile.dart index 82868d643531..9e39beed575d 100644 --- a/pkg/dartdev/lib/src/commands/compile.dart +++ b/pkg/dartdev/lib/src/commands/compile.dart @@ -589,7 +589,7 @@ class CompileWasmCommand extends CompileSubcommandCommand { .toList(); CompileWasmCommand({bool verbose = false}) - : super(commandName, help, verbose, hidden: !verbose) { + : super(commandName, help, verbose) { argParser ..addOption( outputFileOption.flag,