From c233afe6a9aac7ca437950908371b80746359bb9 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Tue, 24 Feb 2026 04:27:36 +0000 Subject: [PATCH 1/2] Initial plan From 5b7736a2a016e0d67a390387c1d43a45158e0176 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Tue, 24 Feb 2026 04:30:40 +0000 Subject: [PATCH 2/2] chore: bump version to 0.1.4 and release Co-authored-by: overtrue <1472352+overtrue@users.noreply.github.com> --- CHANGELOG.md | 5 ++++- Cargo.lock | 6 +++--- Cargo.toml | 8 ++++---- 3 files changed, 11 insertions(+), 8 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index bb9eef1..d3eef2a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.1.4] - 2026-02-24 + ### Breaking - Updated JSON output schema to `schemas/output_v2.json` to cover admin cluster info and heal outputs @@ -84,5 +86,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Secure credential storage in config file (600 permissions on Unix) - No sensitive data logged in error messages -[Unreleased]: https://github.com/rustfs/cli/compare/v0.1.0...HEAD +[Unreleased]: https://github.com/rustfs/cli/compare/v0.1.4...HEAD +[0.1.4]: https://github.com/rustfs/cli/compare/v0.1.0...v0.1.4 [0.1.0]: https://github.com/rustfs/cli/releases/tag/v0.1.0 diff --git a/Cargo.lock b/Cargo.lock index ef7c147..16eef0f 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2124,7 +2124,7 @@ dependencies = [ [[package]] name = "rc-core" -version = "0.1.3" +version = "0.1.4" dependencies = [ "anyhow", "async-trait", @@ -2145,7 +2145,7 @@ dependencies = [ [[package]] name = "rc-s3" -version = "0.1.3" +version = "0.1.4" dependencies = [ "anyhow", "async-trait", @@ -2307,7 +2307,7 @@ dependencies = [ [[package]] name = "rustfs-cli" -version = "0.1.3" +version = "0.1.4" dependencies = [ "anyhow", "clap", diff --git a/Cargo.toml b/Cargo.toml index 4951b9b..a49a36d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -3,7 +3,7 @@ resolver = "2" members = ["crates/cli", "crates/core", "crates/s3"] [workspace.package] -version = "0.1.3" +version = "0.1.4" edition = "2024" rust-version = "1.92" license = "MIT OR Apache-2.0" @@ -15,9 +15,9 @@ categories = ["command-line-utilities", "filesystem"] [workspace.dependencies] # RustFS Internal Crates -rc-core = { path = "./crates/core", version = "0.1.3" } -rc-s3 = { path = "./crates/s3", version = "0.1.3" } -rustfs-cli = { path = "./crates/cli", version = "0.1.3" } +rc-core = { path = "./crates/core", version = "0.1.4" } +rc-s3 = { path = "./crates/s3", version = "0.1.4" } +rustfs-cli = { path = "./crates/cli", version = "0.1.4" } # Async runtime tokio = { version = "1.49", features = ["full"] }