diff --git a/Cargo.lock b/Cargo.lock index 715a6c4..7633f06 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -279,7 +279,7 @@ checksum = "3a822ea5bc7590f9d40f1ba12c0dc3c2760f3482c6984db1573ad11031420831" [[package]] name = "clawshell" -version = "0.0.1" +version = "0.0.2" dependencies = [ "assert_cmd", "axum", diff --git a/Cargo.toml b/Cargo.toml index dcb9a9d..34a8950 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "clawshell" -version = "0.0.1" +version = "0.0.2" edition = "2024" license-file = "LICENSE" homepage = "https://github.com/clawshell/clawshell" diff --git a/tests/cli_tests.rs b/tests/cli_tests.rs index 6985c05..95d75e3 100644 --- a/tests/cli_tests.rs +++ b/tests/cli_tests.rs @@ -62,7 +62,7 @@ fn test_version_output() { .assert() .success() .stdout(contains("clawshell").or(contains("ClawShell").or(contains("Clawshell")))) - .stdout(contains("v0.0.1")) + .stdout(contains("v0.0.2")) .stdout(contains("openclaw").or(contains("OpenClaw"))); }