Skip to content

Commit

Permalink
0.16.0
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelklishin committed Jan 16, 2025
1 parent 1775510 commit 7a94a81
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 6 deletions.
6 changes: 4 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
# Rust Client for the RabbitMQ HTTP API Change Log

## v0.16.0 (in development)
## v0.16.0 (Jan 15, 2025)

No (documented) changes yet.
### Bug Fixes

* `api::Client` now computes API endpoint path correctly (a slash was missing)


## v0.15.0 (Jan 5, 2025)
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,25 +14,25 @@ This library is relatively young, breaking API changes are possible.
### Blocking Client

```toml
rabbitmq_http_client = { version = "0.15.0", features = ["core", "blocking"] }
rabbitmq_http_client = { version = "0.16.0", features = ["core", "blocking"] }
```

### Async Client

```toml
rabbitmq_http_client = { version = "0.15.0", features = ["core", "async"] }
rabbitmq_http_client = { version = "0.16.0", features = ["core", "async"] }
```

### Blocking Client with Tabled Support

```toml
rabbitmq_http_client = { version = "0.15.0", features = ["core", "blocking", "tabled"] }
rabbitmq_http_client = { version = "0.16.0", features = ["core", "blocking", "tabled"] }
```

### Async CLient with Tabled Support

```toml
rabbitmq_http_client = { version = "0.15.0", features = ["core", "async", "tabled"] }
rabbitmq_http_client = { version = "0.16.0", features = ["core", "async", "tabled"] }
```


Expand Down

0 comments on commit 7a94a81

Please sign in to comment.