Compare commits

..

No commits in common. "f8f62b6710a79ac2eb737977bd25e204439636d5" and "2edb00c3d6ba4f860e1018f31feb0f153f0b92e7" have entirely different histories.

6 changed files with 3 additions and 8 deletions

View File

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

View File

@ -1,3 +0,0 @@
# 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 else
smaller, arr = arr, self smaller, arr = arr, self
end end
(arr & smaller).size > 0 (array & smaller).size > 0
end end
end unless Array.method_defined?(:intersect?) end unless Array.method_defined?(:intersect?)
end end

View File

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

View File

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