diff --git a/CHANGELOG.md b/CHANGELOG.md index 7fa3e9c..37da2c7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,17 @@ All notable changes to this project will be documented in this file. +## [0.7.0] - 2024-12-26 + +### Features + +- Only accept URIs in basin+stream args ([#100](https://github.com/s2-streamstore/s2-cli/issues/100)) +- `s2 ls` command to list basins or streams ([#102](https://github.com/s2-streamstore/s2-cli/issues/102)) + +### Miscellaneous Tasks + +- Inline path consts for consistency + ## [0.6.4] - 2024-12-23 ### Bug Fixes diff --git a/Cargo.lock b/Cargo.lock index 6ebcd85..b5e9c68 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1654,7 +1654,7 @@ dependencies = [ [[package]] name = "streamstore-cli" -version = "0.6.4" +version = "0.7.0" dependencies = [ "async-stream", "base16ct", diff --git a/Cargo.toml b/Cargo.toml index d5da206..f877881 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "streamstore-cli" description = "CLI for S2" -version = "0.6.4" +version = "0.7.0" edition = "2021" license = "Apache-2.0" keywords = ["streamstore", "s2", "log", "stream", "s3"]