Skip to content

Commit

Permalink
chore: bump s2-rust-sdk version (#113)
Browse files Browse the repository at this point in the history
  • Loading branch information
sgbalogh authored Jan 21, 2025
1 parent 6c0e469 commit 9eff2cd
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 7 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@

All notable changes to this project will be documented in this file.

## [0.8.2] - 2025-01-21

### Miscellaneous Tasks

- Update SDK to `0.8.0` [#113](https://github.com/s2-streamstore/s2-cli/issues/113))

## [0.8.1] - 2025-01-16

### Miscellaneous Tasks
Expand Down
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.

4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "streamstore-cli"
description = "CLI for S2"
version = "0.8.1"
version = "0.8.2"
edition = "2021"
license = "Apache-2.0"
keywords = ["streamstore", "s2", "log", "stream", "s3"]
Expand Down Expand Up @@ -29,7 +29,7 @@ miette = { version = "7.4.0", features = ["fancy"] }
rand = "0.8.5"
serde = { version = "1.0.217", features = ["derive"] }
serde_json = "1.0.135"
streamstore = "0.7.0"
streamstore = "0.8.0"
thiserror = "2.0.11"
tokio = { version = "1.43.0", features = ["full"] }
tokio-stream = { version = "0.1.17", features = ["io-util"] }
Expand Down
4 changes: 2 additions & 2 deletions src/stream.rs
Original file line number Diff line number Diff line change
Expand Up @@ -114,10 +114,10 @@ impl StreamService {
) -> Result<Streaming<ReadOutput>, ServiceError> {
let read_session_req = ReadSessionRequest {
start_seq_num,
limit: Some(ReadLimit {
limit: ReadLimit {
count: limit_count,
bytes: limit_bytes,
}),
},
};

self.client
Expand Down

0 comments on commit 9eff2cd

Please sign in to comment.