diff --git a/CHANGELOG.md b/CHANGELOG.md index e2ff437..24dc464 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,14 @@ All notable changes to this project will be documented in this file. +## [0.6.1] - 2024-12-17 + +### Miscellaneous Tasks + +- Update cargo binary name to `s2` ([#84](https://github.com/s2-streamstore/s2-cli/issues/84)) +- *(release)* Upgrade SDK to 0.4.0 ([#85](https://github.com/s2-streamstore/s2-cli/issues/85)) +- *(release)* Upgrade SDK to 0.4.1 ([#87](https://github.com/s2-streamstore/s2-cli/issues/87)) + ## [0.6.0] - 2024-12-14 ### Features diff --git a/Cargo.lock b/Cargo.lock index e651bd8..f78fb18 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1624,9 +1624,9 @@ checksum = "6980e8d7511241f8acf4aebddbb1ff938df5eebe98691418c4468d0b72a96a67" [[package]] name = "streamstore" -version = "0.4.0" +version = "0.4.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b71c21dea437fcd11cd6e82d3ccb1eaee5dba93c7034b365ad3c4ed6e8ec5d93" +checksum = "ade73d3420a73c14e8560586d061b9eee83b60730b7645dd76944a986839281b" dependencies = [ "async-stream", "backon", @@ -1654,7 +1654,7 @@ dependencies = [ [[package]] name = "streamstore-cli" -version = "0.6.0" +version = "0.6.1" dependencies = [ "async-stream", "base16ct", diff --git a/Cargo.toml b/Cargo.toml index c66bc12..76788e8 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "streamstore-cli" description = "CLI for S2" -version = "0.6.0" +version = "0.6.1" edition = "2021" license = "Apache-2.0" keywords = ["streamstore", "s2", "log", "stream", "s3"] @@ -28,7 +28,7 @@ miette = { version = "7.2.0", features = ["fancy"] } rand = "0.8.5" serde = { version = "1.0.214", features = ["derive"] } serde_json = "1.0.132" -streamstore = "0.4.0" +streamstore = "0.4.1" thiserror = "2.0.6" tokio = { version = "1.41.1", features = ["full"] } tokio-stream = { version = "0.1.16", features = ["io-util"] }