From 5555ee5554ae2be2844089f6e1b7f949c5b85d6c Mon Sep 17 00:00:00 2001 From: HoneyryderChuck Date: Mon, 5 Jul 2021 13:50:33 +0100 Subject: [PATCH] bumped version to 0.15.3 --- doc/release_notes/0_15_3.md | 5 +++++ lib/httpx/version.rb | 2 +- www/_data/versions.yml | 3 +++ 3 files changed, 9 insertions(+), 1 deletion(-) create mode 100644 doc/release_notes/0_15_3.md diff --git a/doc/release_notes/0_15_3.md b/doc/release_notes/0_15_3.md new file mode 100644 index 00000000..bfbbcd64 --- /dev/null +++ b/doc/release_notes/0_15_3.md @@ -0,0 +1,5 @@ +# 0.15.3 + +## Bugfixes + +* Fixed connection management, where selectables could end up with "arrays of IO objects" as elements, instead of just IO objects. This caused bugs when connecting and performing concurrent requests on multiple hosts (#138). \ No newline at end of file diff --git a/lib/httpx/version.rb b/lib/httpx/version.rb index bc7c3c91..45f25d19 100644 --- a/lib/httpx/version.rb +++ b/lib/httpx/version.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true module HTTPX - VERSION = "0.15.2" + VERSION = "0.15.3" end diff --git a/www/_data/versions.yml b/www/_data/versions.yml index 6bcb2b6f..301a9cf3 100644 --- a/www/_data/versions.yml +++ b/www/_data/versions.yml @@ -1,4 +1,7 @@ - + - + name: "0.15.3" + path: "0_15_3_md.html" - name: "0.15.2" path: "0_15_2_md.html"