From 7e1e68d8ff64be2fca252946a03611b0f543bcde Mon Sep 17 00:00:00 2001 From: Michael Klishin Date: Tue, 27 Nov 2018 23:47:31 +0800 Subject: [PATCH] 1.10.0 --- ChangeLog.md | 11 +++++++++-- lib/rabbitmq/http/client/version.rb | 2 +- 2 files changed, 10 insertions(+), 3 deletions(-) diff --git a/ChangeLog.md b/ChangeLog.md index 6f4e67d..dd1354d 100644 --- a/ChangeLog.md +++ b/ChangeLog.md @@ -1,6 +1,13 @@ -## Changes Between 1.9.0 and 1.10.0 (unreleased) +## Changes Between 1.9.0 and 1.10.0 (Nov 27th, 2018) -No changes yet. +### Improved Resource Deserialisation + +Bodies of responses with content length of 0 will no longer +be deserialised. + +This improves compatibility with future versions of RabbitMQ +that will use Cowboy 2.7.0 or later, which doesn't include +the content-type header for blank responses (e.g. PUTs). ## Changes Between 1.9.0 and 1.9.1 (Oct 19th, 2017) diff --git a/lib/rabbitmq/http/client/version.rb b/lib/rabbitmq/http/client/version.rb index 85f9ef7..07a6fdc 100644 --- a/lib/rabbitmq/http/client/version.rb +++ b/lib/rabbitmq/http/client/version.rb @@ -1,7 +1,7 @@ module RabbitMQ module HTTP class Client - VERSION = "1.10.0.pre" + VERSION = "1.10.0" end end end