From 5cda6bbaaa6c03af2aed1152d3e3ff4f2a8ad163 Mon Sep 17 00:00:00 2001 From: Jeff Charles Date: Tue, 5 Nov 2024 11:44:15 -0500 Subject: [PATCH] Update wording about javy compile in help text --- crates/cli/src/commands.rs | 3 +-- crates/cli/src/main.rs | 3 +-- crates/test-macros/src/lib.rs | 6 +++--- 3 files changed, 5 insertions(+), 7 deletions(-) diff --git a/crates/cli/src/commands.rs b/crates/cli/src/commands.rs index 33500603..dd0b2f31 100644 --- a/crates/cli/src/commands.rs +++ b/crates/cli/src/commands.rs @@ -33,8 +33,7 @@ pub enum Command { /// /// NOTICE: /// - /// This command will be deprecated in - /// the next major release of the CLI (v4.0.0) + /// This command is deprecated and will be removed. /// /// Refer to https://github.com/bytecodealliance/javy/issues/702 for /// details. diff --git a/crates/cli/src/main.rs b/crates/cli/src/main.rs index 733ae85f..491dfe26 100644 --- a/crates/cli/src/main.rs +++ b/crates/cli/src/main.rs @@ -28,8 +28,7 @@ fn main() -> Result<()> { Command::Compile(opts) => { eprintln!( r#" - The `compile` command will be deprecated in the next major - release of the CLI (v4.0.0) + The `compile` command is deprecated and will be removed. Refer to https://github.com/bytecodealliance/javy/issues/702 for details. diff --git a/crates/test-macros/src/lib.rs b/crates/test-macros/src/lib.rs index 609f82ac..bc3f8557 100644 --- a/crates/test-macros/src/lib.rs +++ b/crates/test-macros/src/lib.rs @@ -285,9 +285,9 @@ fn expand_cli_tests(test_config: &CliTestConfig, func: syn::ItemFn) -> Result