Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Comment on lines +89 to +90
Copy link

Copilot AI Feb 24, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The new [0.1.4] comparison link points to v0.1.0...v0.1.4, but the project version is being bumped from 0.1.3 to 0.1.4. Unless there were no 0.1.1–0.1.3 releases/tags, this link should likely compare from the previous release tag (e.g., v0.1.3...v0.1.4) and/or add the missing intermediate release entries/links so the changelog navigation matches the actual version history.

Copilot uses AI. Check for mistakes.
[0.1.0]: https://github.com/rustfs/cli/releases/tag/v0.1.0
6 changes: 3 additions & 3 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand All @@ -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"] }
Expand Down