Skip to content

Commit

Permalink
Update wording about javy compile in help text (#814)
Browse files Browse the repository at this point in the history
  • Loading branch information
jeffcharles authored Nov 5, 2024
1 parent 947dceb commit b5b8be3
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 7 deletions.
3 changes: 1 addition & 2 deletions crates/cli/src/commands.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
3 changes: 1 addition & 2 deletions crates/cli/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
6 changes: 3 additions & 3 deletions crates/test-macros/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -285,9 +285,9 @@ fn expand_cli_tests(test_config: &CliTestConfig, func: syn::ItemFn) -> Result<To
);

let preload_setup = if test_config.dynamic {
// The compile commmand will remain frozen until it becomes
// deprecated in Javy v4.0.0. Until then we test with a frozen
// artifact downloaded from the releases.
// The compile commmand will remain frozen until it is deleted.
// Until then we test with a frozen artifact downloaded from the
// releases.
if command_name == "Compile" {
quote! {
let root = std::path::PathBuf::from(env!("CARGO_MANIFEST_DIR"));
Expand Down

0 comments on commit b5b8be3

Please sign in to comment.