From f8c2207e941119953508870441a2b942f49ec78f Mon Sep 17 00:00:00 2001 From: HoneyryderChuck Date: Tue, 4 Oct 2022 00:06:18 +0100 Subject: [PATCH] bumped version to 0.21.1 --- doc/release_notes/0_21_1.md | 12 ++++++++++++ lib/httpx/version.rb | 2 +- www/_data/versions.yml | 3 +++ 3 files changed, 16 insertions(+), 1 deletion(-) create mode 100644 doc/release_notes/0_21_1.md diff --git a/doc/release_notes/0_21_1.md b/doc/release_notes/0_21_1.md new file mode 100644 index 00000000..f681d3e2 --- /dev/null +++ b/doc/release_notes/0_21_1.md @@ -0,0 +1,12 @@ +# 0.21.1 + +## Bugfixes + +* fix: protecting tcp connect phase against low-level syscall errors + * such as network unreachable, which can happen if connectivity is lost meanwhile. +* native resolver: fix for nameserver switch not happening in case of DNS timeout. + * when more than a nameserver was advertised by the system. + +## Chore + +* Removing usage of deprecated `Random::DEFAULT.rand` (using `Random.rand` instead)- \ No newline at end of file diff --git a/lib/httpx/version.rb b/lib/httpx/version.rb index 16ded536..cae06bb4 100644 --- a/lib/httpx/version.rb +++ b/lib/httpx/version.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true module HTTPX - VERSION = "0.21.0" + VERSION = "0.21.1" end diff --git a/www/_data/versions.yml b/www/_data/versions.yml index 26a540f0..65aaa0bd 100644 --- a/www/_data/versions.yml +++ b/www/_data/versions.yml @@ -1,4 +1,7 @@ - + - + name: "0.21.1" + path: "0_21_1_md.html" - name: "0.21.0" path: "0_21_0_md.html"