diff --git a/CHANGELOG.md b/CHANGELOG.md index ee05460..e2ff437 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,21 @@ All notable changes to this project will be documented in this file. +## [0.6.0] - 2024-12-14 + +### Features + +- Support `s2://` URIs ([#74](https://github.com/s2-streamstore/s2-cli/issues/74)) +- Better display for ping stats ([#81](https://github.com/s2-streamstore/s2-cli/issues/81)) + +### Bug Fixes + +- Disable noisy description in help ([#79](https://github.com/s2-streamstore/s2-cli/issues/79)) + +### Miscellaneous Tasks + +- Remove unnecessary dependencies from `Cargo.toml` ([#80](https://github.com/s2-streamstore/s2-cli/issues/80)) + ## [0.5.2] - 2024-12-13 ### Miscellaneous Tasks diff --git a/Cargo.lock b/Cargo.lock index a2bee1d..0563116 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1665,7 +1665,7 @@ dependencies = [ [[package]] name = "streamstore-cli" -version = "0.5.2" +version = "0.6.0" dependencies = [ "async-stream", "base16ct", diff --git a/Cargo.toml b/Cargo.toml index e459dae..f2e6b0e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "streamstore-cli" description = "CLI for S2" -version = "0.5.2" +version = "0.6.0" edition = "2021" license = "Apache-2.0" keywords = ["streamstore", "s2", "log", "stream", "s3"]