From 965d12617dcac54edc5009fb689c46a45cfe57a6 Mon Sep 17 00:00:00 2001 From: ityuany <519495771@qq.com> Date: Mon, 1 Jul 2024 18:52:52 +0800 Subject: [PATCH] chore: bump version to 0.0.1-93 --- crates/cli/Cargo.toml | 2 +- crates/cli_node/Cargo.toml | 2 +- crates/cli_npm/Cargo.toml | 2 +- crates/cli_npx/Cargo.toml | 2 +- crates/cli_pnpm/Cargo.toml | 2 +- crates/cli_pnpx/Cargo.toml | 2 +- crates/cli_yarn/Cargo.toml | 2 +- crates/dev-tools/Cargo.toml | 2 +- crates/dev-tools/src/main.rs | 2 +- crates/snm_config/Cargo.toml | 2 +- crates/snm_core/Cargo.toml | 2 +- crates/snm_current_dir/Cargo.toml | 2 +- crates/snm_download_builder/Cargo.toml | 2 +- crates/snm_ni/Cargo.toml | 2 +- crates/snm_node/Cargo.toml | 2 +- crates/snm_node_version/Cargo.toml | 2 +- crates/snm_npmrc/Cargo.toml | 2 +- crates/snm_package_json/Cargo.toml | 2 +- crates/snm_package_manager/Cargo.toml | 2 +- crates/snm_shim/Cargo.toml | 2 +- crates/snm_tarball/Cargo.toml | 2 +- crates/snm_utils/Cargo.toml | 2 +- 22 files changed, 22 insertions(+), 22 deletions(-) diff --git a/crates/cli/Cargo.toml b/crates/cli/Cargo.toml index 3155a967..31535801 100644 --- a/crates/cli/Cargo.toml +++ b/crates/cli/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "snm" -version = "0.0.1-92" +version = "0.0.1-93" edition = "2021" authors = ["ityuany"] diff --git a/crates/cli_node/Cargo.toml b/crates/cli_node/Cargo.toml index 8eef1d80..ee991af3 100644 --- a/crates/cli_node/Cargo.toml +++ b/crates/cli_node/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cli_node" -version = "0.0.1-92" +version = "0.0.1-93" edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html diff --git a/crates/cli_npm/Cargo.toml b/crates/cli_npm/Cargo.toml index 83ebd275..1e6b2015 100644 --- a/crates/cli_npm/Cargo.toml +++ b/crates/cli_npm/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cli_npm" -version = "0.0.1-92" +version = "0.0.1-93" edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html diff --git a/crates/cli_npx/Cargo.toml b/crates/cli_npx/Cargo.toml index 759479fe..fb309050 100644 --- a/crates/cli_npx/Cargo.toml +++ b/crates/cli_npx/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cli_npx" -version = "0.0.1-92" +version = "0.0.1-93" edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html diff --git a/crates/cli_pnpm/Cargo.toml b/crates/cli_pnpm/Cargo.toml index 8343ec71..a665b843 100644 --- a/crates/cli_pnpm/Cargo.toml +++ b/crates/cli_pnpm/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cli_pnpm" -version = "0.0.1-92" +version = "0.0.1-93" edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html diff --git a/crates/cli_pnpx/Cargo.toml b/crates/cli_pnpx/Cargo.toml index 824b3c9a..a2e2fecf 100644 --- a/crates/cli_pnpx/Cargo.toml +++ b/crates/cli_pnpx/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cli_pnpx" -version = "0.0.1-92" +version = "0.0.1-93" edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html diff --git a/crates/cli_yarn/Cargo.toml b/crates/cli_yarn/Cargo.toml index ed1e1c79..b363d07b 100644 --- a/crates/cli_yarn/Cargo.toml +++ b/crates/cli_yarn/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cli_yarn" -version = "0.0.1-92" +version = "0.0.1-93" edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html diff --git a/crates/dev-tools/Cargo.toml b/crates/dev-tools/Cargo.toml index db49f0bc..0be0d6c5 100644 --- a/crates/dev-tools/Cargo.toml +++ b/crates/dev-tools/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "dev-tools" -version = "0.0.1-92" +version = "0.0.1-93" edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html diff --git a/crates/dev-tools/src/main.rs b/crates/dev-tools/src/main.rs index ba9dc3a8..3463f1f3 100644 --- a/crates/dev-tools/src/main.rs +++ b/crates/dev-tools/src/main.rs @@ -92,7 +92,7 @@ fn main() -> Result<(), Box> { run_git_command(&["add", "."]); run_git_command(&["commit", "-m", &format!("chore: bump version to {}", ans)]); - run_git_command(&["tag", &format!("v{}", ans)]); + run_git_command(&["tag", &format!("{}", ans)]); // run_git_command(&["push"]); println!("Please run `git push --tags` to push the tags to the remote repository."); diff --git a/crates/snm_config/Cargo.toml b/crates/snm_config/Cargo.toml index 49e21e3f..180f5217 100644 --- a/crates/snm_config/Cargo.toml +++ b/crates/snm_config/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "snm_config" -version = "0.0.1-92" +version = "0.0.1-93" edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html diff --git a/crates/snm_core/Cargo.toml b/crates/snm_core/Cargo.toml index e88f9a58..ff363791 100644 --- a/crates/snm_core/Cargo.toml +++ b/crates/snm_core/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "snm_core" -version = "0.0.1-92" +version = "0.0.1-93" edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html diff --git a/crates/snm_current_dir/Cargo.toml b/crates/snm_current_dir/Cargo.toml index f6bda9d6..ce3b7337 100644 --- a/crates/snm_current_dir/Cargo.toml +++ b/crates/snm_current_dir/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "snm_current_dir" -version = "0.0.1-92" +version = "0.0.1-93" edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html diff --git a/crates/snm_download_builder/Cargo.toml b/crates/snm_download_builder/Cargo.toml index c009e94b..8bc389be 100644 --- a/crates/snm_download_builder/Cargo.toml +++ b/crates/snm_download_builder/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "snm_download_builder" -version = "0.0.1-92" +version = "0.0.1-93" edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html diff --git a/crates/snm_ni/Cargo.toml b/crates/snm_ni/Cargo.toml index d08dad10..24895b4e 100644 --- a/crates/snm_ni/Cargo.toml +++ b/crates/snm_ni/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "snm_ni" -version = "0.0.1-92" +version = "0.0.1-93" edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html diff --git a/crates/snm_node/Cargo.toml b/crates/snm_node/Cargo.toml index b9ed87d7..7a293a1d 100644 --- a/crates/snm_node/Cargo.toml +++ b/crates/snm_node/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "snm_node" -version = "0.0.1-92" +version = "0.0.1-93" edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html diff --git a/crates/snm_node_version/Cargo.toml b/crates/snm_node_version/Cargo.toml index b0a71195..0404d9ba 100644 --- a/crates/snm_node_version/Cargo.toml +++ b/crates/snm_node_version/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "snm_node_version" -version = "0.0.1-92" +version = "0.0.1-93" edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html diff --git a/crates/snm_npmrc/Cargo.toml b/crates/snm_npmrc/Cargo.toml index 6f1a9008..2e5bd095 100644 --- a/crates/snm_npmrc/Cargo.toml +++ b/crates/snm_npmrc/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "snm_npmrc" -version = "0.0.1-92" +version = "0.0.1-93" edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html diff --git a/crates/snm_package_json/Cargo.toml b/crates/snm_package_json/Cargo.toml index d45a543c..cee62868 100644 --- a/crates/snm_package_json/Cargo.toml +++ b/crates/snm_package_json/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "snm_package_json" -version = "0.0.1-92" +version = "0.0.1-93" edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html diff --git a/crates/snm_package_manager/Cargo.toml b/crates/snm_package_manager/Cargo.toml index e75fb122..4f62e8fc 100644 --- a/crates/snm_package_manager/Cargo.toml +++ b/crates/snm_package_manager/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "snm_package_manager" -version = "0.0.1-92" +version = "0.0.1-93" edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html diff --git a/crates/snm_shim/Cargo.toml b/crates/snm_shim/Cargo.toml index a0505850..672c682f 100644 --- a/crates/snm_shim/Cargo.toml +++ b/crates/snm_shim/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "snm_shim" -version = "0.0.1-92" +version = "0.0.1-93" edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html diff --git a/crates/snm_tarball/Cargo.toml b/crates/snm_tarball/Cargo.toml index ffbec78e..96b8eef5 100644 --- a/crates/snm_tarball/Cargo.toml +++ b/crates/snm_tarball/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "snm_tarball" -version = "0.0.1-92" +version = "0.0.1-93" edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html diff --git a/crates/snm_utils/Cargo.toml b/crates/snm_utils/Cargo.toml index 666e65fd..1c3caa68 100644 --- a/crates/snm_utils/Cargo.toml +++ b/crates/snm_utils/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "snm_utils" -version = "0.0.1-92" +version = "0.0.1-93" edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html