From 2790d27a50736327609c543636b2e112353208ad Mon Sep 17 00:00:00 2001 From: ADD-SP Date: Mon, 16 Feb 2026 19:31:05 +0000 Subject: [PATCH 1/2] chore(Cargo.toml): bump crate version from `0.0.1` to `0.0.2` --- Cargo.lock | 2 +- Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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" From 75597c438d0dbe518fa5dac847583fd8bd9a9c22 Mon Sep 17 00:00:00 2001 From: ADD-SP Date: Mon, 16 Feb 2026 19:39:19 +0000 Subject: [PATCH 2/2] tests: update `test_version_output` --- tests/cli_tests.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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"))); }