bumping version to 0.18.1

This commit is contained in:
HoneyryderChuck 2021-11-23 10:32:12 +00:00
parent ab70f6a586
commit 8e77f0464a
2 changed files with 13 additions and 1 deletions

View File

@ -0,0 +1,12 @@
# 0.18.1
## Bugfixes
* HTTP/1.1 pipelining logs were logging the previously-buffered requests all together for each triggered request, which created some confusion for users when reporting errors. This has been fixed.
* HTTP/2 coalescing is now skipped when performing TLS connections with VERIFY_NONE.
* HTTP/2 peer GOAWAY frames will now result in a (retryable) connection error, instead of being ignored and leaving a "ghost" connection behind.
* fixed total timeout call which was not raising the exception.
## Chore
This gem now requires MFA-based gem releases.

View File

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