diff --git a/CHANGELOG.md b/CHANGELOG.md index 471e2bf..92c5c65 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [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 +- Change codecov upload ([#227](https://github.com/rabbitmq/rabbitmq-stream-rust-client/pull/227)) +- Filtering supported ([#225](https://github.com/rabbitmq/rabbitmq-stream-rust-client/pull/225)) + ## [0.4.4](https://github.com/rabbitmq/rabbitmq-stream-rust-client/compare/rabbitmq-stream-client-v0.4.3...rabbitmq-stream-client-v0.4.4) - 2024-08-11 ### Fixed diff --git a/Cargo.toml b/Cargo.toml index 00b0b68..9bfb384 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rabbitmq-stream-client" -version = "0.4.4" +version = "0.5.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.4", path = "protocol" } +rabbitmq-stream-protocol = { version = "0.5", 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 00933b7..260e214 100644 --- a/protocol/CHANGELOG.md +++ b/protocol/CHANGELOG.md @@ -6,6 +6,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [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 +- Filtering supported ([#225](https://github.com/rabbitmq/rabbitmq-stream-rust-client/pull/225)) + ## [0.4.3](https://github.com/rabbitmq/rabbitmq-stream-rust-client/compare/rabbitmq-stream-protocol-v0.4.2...rabbitmq-stream-protocol-v0.4.3) - 2024-08-11 ### Fixed diff --git a/protocol/Cargo.toml b/protocol/Cargo.toml index 43b3021..713de8e 100644 --- a/protocol/Cargo.toml +++ b/protocol/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rabbitmq-stream-protocol" -version = "0.4.3" +version = "0.5.0" authors = ["wolf4ood ", "korsmakolnikov "] edition = "2018" license = "Apache-2.0 OR MPL-2.0"