diff --git a/CHANGELOG.md b/CHANGELOG.md index 066b351..bd0d171 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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) diff --git a/README.md b/README.md index 9f303ba..ec9629c 100644 --- a/README.md +++ b/README.md @@ -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"] } ```