Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rabbitmq-stream-client"
version = "0.5.0"
version = "0.6.0"
authors = ["wolf4ood <[email protected]>", "korsmakolnikov <[email protected]>", "gsantomaggio <[email protected]>"]
edition = "2018"
license = "Apache-2.0 OR MPL-2.0"
Expand All @@ -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"
Expand Down
6 changes: 6 additions & 0 deletions protocol/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion protocol/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rabbitmq-stream-protocol"
version = "0.5.0"
version = "0.6.0"
authors = ["wolf4ood <[email protected]>", "korsmakolnikov <[email protected]>"]
edition = "2018"
license = "Apache-2.0 OR MPL-2.0"
Expand Down
Loading