bumped to 0.5.1

This commit is contained in:
HoneyryderChuck 2019-10-13 18:31:52 +01:00
parent 44fb9f1820
commit 87cacb98a5
3 changed files with 18 additions and 1 deletions

View File

@ -0,0 +1,14 @@
# 0.5.1
## Improvements
* Fixed flakiness of test suite introduced in the 0.4 versions;
* compression plugin:
* do not send `accept-encoding` header when `range` is present;
* Remove from `content-encoding` if body stream decodes it;
* Added `HTTP::Response::Body#encodings` to return the decoded encoding(s);
## Bugfixes
* non-UTF-8 bodies weren't being properly handled, which led to a loop report (`slice` -> `byteslice`);
* connection reuse now also happens for requests with body (it was only working with `GET`s and other bodyless requests before);

View File

@ -1,5 +1,5 @@
# frozen_string_literal: true
module HTTPX
VERSION = "0.5.0"
VERSION = "0.5.1"
end

View File

@ -1,4 +1,7 @@
-
-
name: "0.5.1"
path: "0_5_1_md.html"
-
name: "0.5.0"
path: "0_5_0_md.html"