From 30df99f052fea3854d8bcf28902176944c7ca14e Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 31 Oct 2024 11:13:41 +0100 Subject: [PATCH] chore: release (#231) * chore: release * Update to 0.6.0 Signed-off-by: Gabriele Santomaggio --------- Signed-off-by: Gabriele Santomaggio Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: Gabriele Santomaggio --- CHANGELOG.md | 14 ++++++++++++++ Cargo.toml | 4 ++-- protocol/CHANGELOG.md | 6 ++++++ protocol/Cargo.toml | 2 +- 4 files changed, 23 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 92c5c65..789a44a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,20 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.5.1](https://github.com/rabbitmq/rabbitmq-stream-rust-client/compare/rabbitmq-stream-client-v0.5.0...rabbitmq-stream-client-v0.5.1) - 2024-10-31 + +### Fixed + +- fixes [#233](https://github.com/rabbitmq/rabbitmq-stream-rust-client/pull/233) by incrementing the publisher sequence ([#234](https://github.com/rabbitmq/rabbitmq-stream-rust-client/pull/234)) + +### Other + +- cleanup unused connections when load balancing mode is active ([#239](https://github.com/rabbitmq/rabbitmq-stream-rust-client/pull/239)) +- Update README.md ([#238](https://github.com/rabbitmq/rabbitmq-stream-rust-client/pull/238)) +- Implement super_stream ([#232](https://github.com/rabbitmq/rabbitmq-stream-rust-client/pull/232)) +- close client connection in client consumer ([#235](https://github.com/rabbitmq/rabbitmq-stream-rust-client/pull/235)) +- Create/Delete superstream and Partition and route commands ([#230](https://github.com/rabbitmq/rabbitmq-stream-rust-client/pull/230)) + ## [0.5.0](https://github.com/rabbitmq/rabbitmq-stream-rust-client/compare/rabbitmq-stream-client-v0.4.4...rabbitmq-stream-client-v0.5.0) - 2024-08-23 ### Other diff --git a/Cargo.toml b/Cargo.toml index af13868..73712b5 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rabbitmq-stream-client" -version = "0.5.0" +version = "0.6.0" authors = ["wolf4ood ", "korsmakolnikov ", "gsantomaggio "] edition = "2018" license = "Apache-2.0 OR MPL-2.0" @@ -23,7 +23,7 @@ members = [ [dependencies] tokio-rustls = {version="0.24.1", features=["dangerous_configuration"]} rustls-pemfile = "1.0.3" -rabbitmq-stream-protocol = { version = "0.5", path = "protocol" } +rabbitmq-stream-protocol = { version = "0.6", path = "protocol" } tokio = { version = "1.29.1", features = ["full"] } tokio-util = { version = "0.7.3", features = ["codec"] } bytes = "1.0.0" diff --git a/protocol/CHANGELOG.md b/protocol/CHANGELOG.md index 260e214..0fef932 100644 --- a/protocol/CHANGELOG.md +++ b/protocol/CHANGELOG.md @@ -6,6 +6,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.6.0](https://github.com/rabbitmq/rabbitmq-stream-rust-client/compare/rabbitmq-stream-protocol-v0.5.0...rabbitmq-stream-protocol-v0.6.0) - 2024-10-31 + +### Other + +- Create/Delete superstream and Partition and route commands ([#230](https://github.com/rabbitmq/rabbitmq-stream-rust-client/pull/230)) + ## [0.5.0](https://github.com/rabbitmq/rabbitmq-stream-rust-client/compare/rabbitmq-stream-protocol-v0.4.3...rabbitmq-stream-protocol-v0.5.0) - 2024-08-23 ### Other diff --git a/protocol/Cargo.toml b/protocol/Cargo.toml index 713de8e..f97fdf8 100644 --- a/protocol/Cargo.toml +++ b/protocol/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rabbitmq-stream-protocol" -version = "0.5.0" +version = "0.6.0" authors = ["wolf4ood ", "korsmakolnikov "] edition = "2018" license = "Apache-2.0 OR MPL-2.0"