Merge branch 'issue-204'

This commit is contained in:
HoneyryderChuck 2022-08-10 23:12:23 +01:00
commit f8f62b6710
6 changed files with 8 additions and 3 deletions

View File

@ -5,7 +5,6 @@ SimpleCov.start do
add_filter "/test/"
add_filter "/integration_tests/"
add_filter "/regression_tests/"
add_filter "/lib/httpx/extensions.rb"
add_filter "/lib/httpx/plugins/internal_telemetry.rb"
add_filter "/lib/httpx/punycode.rb"
end

View File

@ -0,0 +1,3 @@
# 0.20.5
The `intersect?` refinement introduced in the previous version had a wrong variable name.

View File

@ -122,7 +122,7 @@ module HTTPX
else
smaller, arr = arr, self
end
(array & smaller).size > 0
(arr & smaller).size > 0
end
end unless Array.method_defined?(:intersect?)
end

View File

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

View File

@ -1,4 +1,7 @@
-
-
name: "0.20.5"
path: "0_20_5_md.html"
-
name: "0.20.4"
path: "0_20_4_md.html"