Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.9.1](https://github.com/rabbitmq/rabbitmq-stream-rust-client/compare/rabbitmq-stream-client-v0.9.0...rabbitmq-stream-client-v0.9.1) - 2025-12-03

### Other

- Upgrade all dependencies where doing so wouldn't cause breaking changes. ([#303](https://github.com/rabbitmq/rabbitmq-stream-rust-client/pull/303))
- Fixed typo for `ResponseCode::PrecoditionFailed` ([#307](https://github.com/rabbitmq/rabbitmq-stream-rust-client/pull/307))

## [0.9.0](https://github.com/rabbitmq/rabbitmq-stream-rust-client/compare/rabbitmq-stream-client-v0.8.0...rabbitmq-stream-client-v0.9.0) - 2025-06-09

### Other
Expand Down
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rabbitmq-stream-client"
version = "0.9.0"
version = "0.9.1"
authors = ["wolf4ood <enrico.risa@gmail.com>", "korsmakolnikov <korsmakolnikov@gmail.com>", "gsantomaggio <g.santomaggio@gmail.com>"]
edition = "2018"
license = "Apache-2.0 OR MPL-2.0"
Expand All @@ -24,7 +24,7 @@ members = [
[dependencies]
tokio-rustls = { version = "0.26.4" }
rustls-pemfile = "2.2.0"
rabbitmq-stream-protocol = { version = "0.9", path = "protocol" }
rabbitmq-stream-protocol = { version = "0.10", path = "protocol" }
tokio = { version = "1.48.0", features = ["full"] }
tokio-util = { version = "0.7.16", features = ["codec"] }
bytes = "1.10.1"
Expand Down
7 changes: 7 additions & 0 deletions protocol/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.10.0](https://github.com/rabbitmq/rabbitmq-stream-rust-client/compare/rabbitmq-stream-protocol-v0.9.0...rabbitmq-stream-protocol-v0.10.0) - 2025-12-03

### Other

- Upgrade all dependencies where doing so wouldn't cause breaking changes. ([#303](https://github.com/rabbitmq/rabbitmq-stream-rust-client/pull/303))
- Fixed typo for `ResponseCode::PrecoditionFailed` ([#307](https://github.com/rabbitmq/rabbitmq-stream-rust-client/pull/307))

## [0.8.1](https://github.com/rabbitmq/rabbitmq-stream-rust-client/compare/rabbitmq-stream-protocol-v0.8.0...rabbitmq-stream-protocol-v0.8.1) - 2025-06-09

### Other
Expand Down
2 changes: 1 addition & 1 deletion protocol/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rabbitmq-stream-protocol"
version = "0.9.0"
version = "0.10.0"
authors = ["wolf4ood <enrico.risa@gmail.com>", "korsmakolnikov <korsmakolnikov@gmail.com>"]
edition = "2018"
license = "Apache-2.0 OR MPL-2.0"
Expand Down