diff --git a/CHANGELOG.md b/CHANGELOG.md index 038200a..904c1a9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/Cargo.toml b/Cargo.toml index 6b60bc6..cf79a51 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rabbitmq-stream-client" -version = "0.9.0" +version = "0.9.1" authors = ["wolf4ood ", "korsmakolnikov ", "gsantomaggio "] edition = "2018" license = "Apache-2.0 OR MPL-2.0" @@ -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" diff --git a/protocol/CHANGELOG.md b/protocol/CHANGELOG.md index a8e2d5e..4ab93d8 100644 --- a/protocol/CHANGELOG.md +++ b/protocol/CHANGELOG.md @@ -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 diff --git a/protocol/Cargo.toml b/protocol/Cargo.toml index b0d08da..2a5be3d 100644 --- a/protocol/Cargo.toml +++ b/protocol/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rabbitmq-stream-protocol" -version = "0.9.0" +version = "0.10.0" authors = ["wolf4ood ", "korsmakolnikov "] edition = "2018" license = "Apache-2.0 OR MPL-2.0"