Compare commits

...

4 Commits

Author SHA1 Message Date
HoneyryderChuck
f8f62b6710 Merge branch 'issue-204' 2022-08-10 23:12:23 +01:00
HoneyryderChuck
bee57ff1b6 bumped version to 0.20.5 2022-08-10 23:11:18 +01:00
HoneyryderChuck
c580812eb9 show coverage of extensions 2022-08-10 23:03:49 +01:00
HoneyryderChuck
e6502c534e fixing wrong var name in extension 2022-08-10 23:03:26 +01:00
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"