From 1977a2c85941231b638162b7abe4e18257c7c752 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 11 Feb 2025 16:26:26 +0100 Subject: [PATCH] chore(rabbitmq-stream-client): release v0.8.0 (#270) * chore(rabbitmq-stream-client): release v0.7.2 * update codec to 0.8.0 --------- 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 | 7 +++++++ Cargo.toml | 4 ++-- protocol/Cargo.toml | 2 +- 3 files changed, 10 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 906afaa..8601075 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.8.0](https://github.com/rabbitmq/rabbitmq-stream-rust-client/compare/rabbitmq-stream-client-v0.7.1...rabbitmq-stream-client-v0.8.0) - 2025-02-11 + +### Other + +- Deserialize `ClientOption` with serde ([#271](https://github.com/rabbitmq/rabbitmq-stream-rust-client/pull/271)) +- Update `tokio-rustls` & `rustls-pemfile` ([#269](https://github.com/rabbitmq/rabbitmq-stream-rust-client/pull/269)) + ## [0.7.1](https://github.com/rabbitmq/rabbitmq-stream-rust-client/compare/rabbitmq-stream-client-v0.7.0...rabbitmq-stream-client-v0.7.1) - 2025-02-06 ### Other diff --git a/Cargo.toml b/Cargo.toml index 49f3428..06cb49e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rabbitmq-stream-client" -version = "0.7.1" +version = "0.8.0" 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.1" } rustls-pemfile = "2.2.0" -rabbitmq-stream-protocol = { version = "0.7", path = "protocol" } +rabbitmq-stream-protocol = { version = "0.8", 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/Cargo.toml b/protocol/Cargo.toml index 1509c5e..9db6284 100644 --- a/protocol/Cargo.toml +++ b/protocol/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rabbitmq-stream-protocol" -version = "0.7.0" +version = "0.8.0" authors = ["wolf4ood ", "korsmakolnikov "] edition = "2018" license = "Apache-2.0 OR MPL-2.0"