Skip to content

chore: release #284

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 3 commits into from
Jun 9, 2025
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
17 changes: 17 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,23 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.9.0](https://github.com/rabbitmq/rabbitmq-stream-rust-client/compare/rabbitmq-stream-client-v0.8.0...rabbitmq-stream-client-v0.9.0) - 2025-06-09

### Other

- OnClosed callback for producer ([#293](https://github.com/rabbitmq/rabbitmq-stream-rust-client/pull/293))
- Update derive_more requirement from 0.99 to 2.0 ([#294](https://github.com/rabbitmq/rabbitmq-stream-rust-client/pull/294))
- Fix task leak ([#292](https://github.com/rabbitmq/rabbitmq-stream-rust-client/pull/292))
- Fix new clippy version issues ([#291](https://github.com/rabbitmq/rabbitmq-stream-rust-client/pull/291))
- Bump codecov/codecov-action from 5.4.0 to 5.4.2 ([#285](https://github.com/rabbitmq/rabbitmq-stream-rust-client/pull/285))
- Bump codecov/codecov-action from 5.3.1 to 5.4.0 ([#277](https://github.com/rabbitmq/rabbitmq-stream-rust-client/pull/277))
- Remove use of `doc(cfg(...))` and the docsrs configuration ([#282](https://github.com/rabbitmq/rabbitmq-stream-rust-client/pull/282))
- Update fake requirement from 3.0.0 to 4.2.0 ([#281](https://github.com/rabbitmq/rabbitmq-stream-rust-client/pull/281))
- Fix doc build failed ([#280](https://github.com/rabbitmq/rabbitmq-stream-rust-client/pull/280))
- Expose LeaderLocator enum ([#279](https://github.com/rabbitmq/rabbitmq-stream-rust-client/pull/279))
- Dynamic send ([#276](https://github.com/rabbitmq/rabbitmq-stream-rust-client/pull/276))
- FnOnce as Producer::send callback ([#273](https://github.com/rabbitmq/rabbitmq-stream-rust-client/pull/273))

## [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
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.8.0"
version = "0.9.0"
authors = ["wolf4ood <[email protected]>", "korsmakolnikov <[email protected]>", "gsantomaggio <[email protected]>"]
edition = "2018"
license = "Apache-2.0 OR MPL-2.0"
Expand All @@ -24,7 +24,7 @@ members = [
[dependencies]
tokio-rustls = { version = "0.26.1" }
rustls-pemfile = "2.2.0"
rabbitmq-stream-protocol = { version = "0.8", path = "protocol" }
rabbitmq-stream-protocol = { version = "0.9", path = "protocol" }
tokio = { version = "1.29.1", features = ["full"] }
tokio-util = { version = "0.7.3", features = ["codec"] }
bytes = "1.0.0"
Expand Down
8 changes: 8 additions & 0 deletions protocol/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.8.1](https://github.com/rabbitmq/rabbitmq-stream-rust-client/compare/rabbitmq-stream-protocol-v0.8.0...rabbitmq-stream-protocol-v0.8.1) - 2025-06-09

### Other

- Update derive_more requirement from 0.99 to 2.0 ([#294](https://github.com/rabbitmq/rabbitmq-stream-rust-client/pull/294))
- Dynamic send ([#276](https://github.com/rabbitmq/rabbitmq-stream-rust-client/pull/276))
- FnOnce as Producer::send callback ([#273](https://github.com/rabbitmq/rabbitmq-stream-rust-client/pull/273))

## [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
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.8.0"
version = "0.9.0"
authors = ["wolf4ood <[email protected]>", "korsmakolnikov <[email protected]>"]
edition = "2018"
license = "Apache-2.0 OR MPL-2.0"
Expand Down
Loading