diff --git a/CHANGELOG.md b/CHANGELOG.md index c3035e6..4376545 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,20 @@ All notable changes to this project will be documented in this file. +## [0.25.0] - 2026-01-20 + +### Features + +- [**breaking**] Replaced `ping` command which only tested latency. with a new `bench` command that measures throughput and latency. + +### Bug Fixes + +- Use cross instead of musl.cc for static bins ([#202](https://github.com/s2-streamstore/s2-cli/issues/202)) + +### Refactor + +- `--catchup-delay` arg for `bench` ([#203](https://github.com/s2-streamstore/s2-cli/issues/203)) + ## [0.24.2] - 2026-01-20 ### Features diff --git a/Cargo.lock b/Cargo.lock index a1b8254..27977b9 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2238,7 +2238,7 @@ dependencies = [ [[package]] name = "s2-cli" -version = "0.24.2" +version = "0.25.0" dependencies = [ "assert_cmd", "async-stream", diff --git a/Cargo.toml b/Cargo.toml index f314000..1966ca6 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "s2-cli" description = "CLI for S2" -version = "0.24.2" +version = "0.25.0" edition = "2024" license = "MIT" keywords = ["s2", "durable", "streams", "client", "cli"]