From 0e9823158adb7057d91ad8c951346ff198b62327 Mon Sep 17 00:00:00 2001 From: HoneyryderChuck Date: Sun, 2 Jan 2022 23:31:43 +0200 Subject: [PATCH] bumped version to 0.18.5 --- doc/release_notes/0_18_5.md | 10 ++++++++++ lib/httpx/version.rb | 2 +- www/_data/versions.yml | 3 +++ 3 files changed, 14 insertions(+), 1 deletion(-) create mode 100644 doc/release_notes/0_18_5.md diff --git a/doc/release_notes/0_18_5.md b/doc/release_notes/0_18_5.md new file mode 100644 index 00000000..52f94508 --- /dev/null +++ b/doc/release_notes/0_18_5.md @@ -0,0 +1,10 @@ +# 0.18.5 + +## Improvements + +* ruby 3.1 is now officially supported. +* when user sets a `Host` header for an HTTP/2 request, this will be used in the `:authority` HTTP/2 pseudo-header, instead of silently ignored (mimicking what "curl" does). + +## Bugfixes + +* fixed "throw outside of catch block" error happening when pipelining requests on an HTTP/1 connnection and resulting in a timeout. \ No newline at end of file diff --git a/lib/httpx/version.rb b/lib/httpx/version.rb index bda46c0c..fcc08620 100644 --- a/lib/httpx/version.rb +++ b/lib/httpx/version.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true module HTTPX - VERSION = "0.18.4" + VERSION = "0.18.5" end diff --git a/www/_data/versions.yml b/www/_data/versions.yml index e0f63d42..d05f3c98 100644 --- a/www/_data/versions.yml +++ b/www/_data/versions.yml @@ -1,4 +1,7 @@ - + - + name: "0.18.5" + path: "0_18_5_md.html" - name: "0.18.4" path: "0_18_4_md.html"