Skip to content

Commit 6cf0a03

Browse files
0.35.0
1 parent 7f3ddf8 commit 6cf0a03

File tree

3 files changed

+17
-6
lines changed

3 files changed

+17
-6
lines changed

CHANGELOG.md

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,17 @@
11
# Rust Client for the RabbitMQ HTTP API Change Log
22

3-
## v0.35.0 (in development)
3+
## v0.36.0 (in development)
4+
5+
No changes yet.
6+
7+
8+
## v0.35.0 (Jun 28, 2025)
9+
10+
* `ClientCapabilities` fields now default to `false` when not provided in
11+
the API response.
12+
13+
GitHub issue: [#56](https://github.com/michaelklishin/rabbitmq-http-api-rs/issues/56).
14+
415

516
## v0.34.0 (Jun 12, 2025)
617

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "rabbitmq_http_client"
3-
version = "0.34.0"
3+
version = "0.35.0"
44
edition = "2021"
55

66
description = "RabbitMQ HTTP API client"

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,25 +14,25 @@ This library is relatively young, breaking API changes are possible.
1414
### Blocking Client
1515

1616
```toml
17-
rabbitmq_http_client = { version = "0.34.0", features = ["core", "blocking"] }
17+
rabbitmq_http_client = { version = "0.35.0", features = ["core", "blocking"] }
1818
```
1919

2020
### Async Client
2121

2222
```toml
23-
rabbitmq_http_client = { version = "0.34.0", features = ["core", "async"] }
23+
rabbitmq_http_client = { version = "0.35.0", features = ["core", "async"] }
2424
```
2525

2626
### Blocking Client with Tabled Support
2727

2828
```toml
29-
rabbitmq_http_client = { version = "0.34.0", features = ["core", "blocking", "tabled"] }
29+
rabbitmq_http_client = { version = "0.35.0", features = ["core", "blocking", "tabled"] }
3030
```
3131

3232
### Async Client with Tabled Support
3333

3434
```toml
35-
rabbitmq_http_client = { version = "0.34.0", features = ["core", "async", "tabled"] }
35+
rabbitmq_http_client = { version = "0.35.0", features = ["core", "async", "tabled"] }
3636
```
3737

3838

0 commit comments

Comments
 (0)