bump version to 0.22.1

This commit is contained in:
HoneyryderChuck 2022-12-23 17:36:47 +00:00
parent 73326672f4
commit 6723fca484
2 changed files with 12 additions and 1 deletions

View File

@ -0,0 +1,11 @@
# 0.22.1
## Bugfixes
* `:retries` plugin: fix `HTTPX::Response#response to point to last possible response in the redirection chain.
* `:stream` plugin: Make `HTTPX::Session#request` public (as it is inn the main class) .
* return 100 responses if the request didn't specifically ask for "100-continue" negotiation (via the "expect" header).
## Improvements
Wrap low-level socket errors in a `HTTPX::ConnectionError` exception.

View File

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