From 7a94a81fd138ed83eaef5d2a8f617a491212b4e9 Mon Sep 17 00:00:00 2001 From: Michael Klishin Date: Wed, 15 Jan 2025 23:20:12 -0500 Subject: [PATCH] 0.16.0 --- CHANGELOG.md | 6 ++++-- README.md | 8 ++++---- 2 files changed, 8 insertions(+), 6 deletions(-) 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"] } ```