Skip to content

Commit f2aac90

Browse files
0.26.0
1 parent 8b24051 commit f2aac90

File tree

2 files changed

+18
-5
lines changed

2 files changed

+18
-5
lines changed

CHANGELOG.md

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

3-
## v0.26.0 (in development)
3+
## v0.27.0 (in development)
4+
5+
No changes yet.
6+
7+
8+
## v0.26.0 (Mar 10, 2024)
49

510
### Enhancements
611

12+
* `ClientBuilder<E, U, P>` now has a default type parameter value.
13+
14+
Contributed by @ikrivosheev.
15+
16+
GitHub issue: [#46](https://github.com/michaelklishin/rabbitmq-http-api-rs/pull/46)
17+
718
* `QueueOps`, `NamedPolicyTargetObject` are two new traits that allow
819
key queue properties to be accessed on several structs that semantically represent
920
a queue, either directly or in an exported set of definitions
1021

1122
* `QueueType::Unsupported(String)` is a new queue type variant
1223

24+
* Initial functions for mutating certain parts of `ClusterDefinitionSet`s
25+
1326

1427
## v0.25.0 (Mar 3, 2025)
1528

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.25.0", features = ["core", "blocking"] }
17+
rabbitmq_http_client = { version = "0.26.0", features = ["core", "blocking"] }
1818
```
1919

2020
### Async Client
2121

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

2626
### Blocking Client with Tabled Support
2727

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

3232
### Async Client with Tabled Support
3333

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

3838

0 commit comments

Comments
 (0)