diff --git a/CHANGELOG.md b/CHANGELOG.md index 85bd6822..9a8fc8b8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,17 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.7.0](https://github.com/rabbitmq/rabbitmq-stream-rust-client/compare/rabbitmq-stream-client-v0.6.1...rabbitmq-stream-client-v0.7.0) - 2024-11-21 + +### Other + +- Single active consumer implementation ([#248](https://github.com/rabbitmq/rabbitmq-stream-rust-client/pull/248)) +- Bump codecov/codecov-action from 4.6.0 to 5.0.2 ([#256](https://github.com/rabbitmq/rabbitmq-stream-rust-client/pull/256)) +- Bump codecov/codecov-action from 4.5.0 to 4.6.0 ([#254](https://github.com/rabbitmq/rabbitmq-stream-rust-client/pull/254)) +- Bump actions-rs/toolchain from 1.0.6 to 1.0.7 ([#255](https://github.com/rabbitmq/rabbitmq-stream-rust-client/pull/255)) +- Bump docker/build-push-action from 5 to 6 ([#253](https://github.com/rabbitmq/rabbitmq-stream-rust-client/pull/253)) +- add ability to include properties to the consumers during subscriptions ([#249](https://github.com/rabbitmq/rabbitmq-stream-rust-client/pull/249)) + ## [0.6.1](https://github.com/rabbitmq/rabbitmq-stream-rust-client/compare/rabbitmq-stream-client-v0.6.0...rabbitmq-stream-client-v0.6.1) - 2024-11-05 ### Fixed diff --git a/Cargo.toml b/Cargo.toml index 742abe3a..54320821 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rabbitmq-stream-client" -version = "0.6.1" +version = "0.7.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.4" -rabbitmq-stream-protocol = { version = "0.6", path = "protocol" } +rabbitmq-stream-protocol = { version = "0.7", 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 0fef9326..c90899f5 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.7.0](https://github.com/rabbitmq/rabbitmq-stream-rust-client/compare/rabbitmq-stream-protocol-v0.6.0...rabbitmq-stream-protocol-v0.7.0) - 2024-11-21 + +### Other + +- Update fake requirement from 2.5 to 3.0 ([#251](https://github.com/rabbitmq/rabbitmq-stream-rust-client/pull/251)) +- Single active consumer implementation ([#248](https://github.com/rabbitmq/rabbitmq-stream-rust-client/pull/248)) + ## [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 diff --git a/protocol/Cargo.toml b/protocol/Cargo.toml index 12690ed7..1509c5e1 100644 --- a/protocol/Cargo.toml +++ b/protocol/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rabbitmq-stream-protocol" -version = "0.6.0" +version = "0.7.0" authors = ["wolf4ood ", "korsmakolnikov "] edition = "2018" license = "Apache-2.0 OR MPL-2.0"