typhoeus 1.5.0 → 1.6.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: '09cda92cc81622180d5611b30234ea35c382779dcac43716ed3acaa041f41c31'
4
- data.tar.gz: 739ebbdbffe74d7a72e2ef2c07f85585e62bc38f9e44c3926ed0c6635797e63b
3
+ metadata.gz: da76288cb44cae7a0b697d2758d41c736ce8cd35b83cc80dcc36b05a46b71601
4
+ data.tar.gz: 00675ad1b7cca1fa8a944c03450d1ff78419df4a734913f9297f00fb890bed41
5
5
  SHA512:
6
- metadata.gz: 89ec1a6d9c2d8f9a1e74688507961e14d97742049df617baa3141311ef9951cb1ae9bce20d29f41ab371f97ea1022f1062a6ae07b9838fd27551513161faf0c8
7
- data.tar.gz: aedfec09b2f08c34c279574ec34637a0f8262b1a00be8a36c18918ebf7d9ea9ed9e962fc0f8851f312f96bf588dc77830ce4636f34b43d92434c825832e1e13b
6
+ metadata.gz: 931cc5e229d88380754841384cd11aa2e96f851d7ba765420f00e9817d2e05be0b77fbd96d68c21865fd894f34d5708f5c2d306fa0cc9bdbf3c06489103b0b0e
7
+ data.tar.gz: 8b26b43c59ef011e401f6938ba063fceea42288e755f4762a08b5cf44f6d82dbe8f30959ea65a446a73da35127378d2a2e24f6e920fbe067fcaa37f01320cbe5
data/CHANGELOG.md CHANGED
@@ -2,7 +2,20 @@
2
2
 
3
3
  ## Master
4
4
 
5
- [Full Changelog](http://github.com/typhoeus/typhoeus/compare/v1.5.0...master)
5
+ [Full Changelog](http://github.com/typhoeus/typhoeus/compare/v1.6.0...master)
6
+
7
+ ## 1.6.0
8
+
9
+ [Full Changelog](http://github.com/typhoeus/typhoeus/compare/v1.5.0...v1.6.0)
10
+
11
+ * Add Ruby 4.0 to CI matrix and update checkout action to v6.
12
+ ([Geremia Taglialatela](https://github.com/tagliala), [#744](https://github.com/typhoeus/typhoeus/pull/744))
13
+ * Require Ethon >= 0.18.0, removing the upper bound constraint.
14
+ ([Geremia Taglialatela](https://github.com/tagliala), [#742](https://github.com/typhoeus/typhoeus/pull/742))
15
+ * Update RubyDoc link in gemspec metadata.
16
+ ([Felipe Mesquita](https://github.com/felipedmesquita), [#737](https://github.com/typhoeus/typhoeus/pull/737))
17
+ * Update gem version badge and remove Code Climate badge.
18
+ ([Felipe Mesquita](https://github.com/felipedmesquita), [#736](https://github.com/typhoeus/typhoeus/pull/736))
6
19
 
7
20
  ## 1.5.0
8
21
 
data/README.md CHANGED
@@ -1,4 +1,4 @@
1
- # Typhoeus [![CI](https://github.com/typhoeus/typhoeus/actions/workflows/ci.yml/badge.svg)](https://github.com/typhoeus/typhoeus/actions/workflows/ci.yml) [![Experimental](https://github.com/typhoeus/typhoeus/actions/workflows/experimental.yml/badge.svg)](https://github.com/typhoeus/typhoeus/actions/workflows/experimental.yml) [![Code Climate](https://img.shields.io/codeclimate/maintainability/typhoeus/typhoeus.svg)](https://codeclimate.com/github/typhoeus/typhoeus) [![Gem Version](https://img.shields.io/gem/v/typhoeus.svg)](https://rubygems.org/gems/typhoeus)
1
+ # Typhoeus [![Gem Version](https://badge.fury.io/rb/typhoeus.svg)](https://badge.fury.io/rb/typhoeus) [![CI](https://github.com/typhoeus/typhoeus/actions/workflows/ci.yml/badge.svg)](https://github.com/typhoeus/typhoeus/actions/workflows/ci.yml) [![Experimental](https://github.com/typhoeus/typhoeus/actions/workflows/experimental.yml/badge.svg)](https://github.com/typhoeus/typhoeus/actions/workflows/experimental.yml)
2
2
 
3
3
  Like a modern code version of the mythical beast with 100 serpent heads, Typhoeus runs HTTP requests in parallel while cleanly encapsulating handling logic.
4
4
 
@@ -32,7 +32,7 @@ gem install typhoeus
32
32
 
33
33
  ## Project Tracking
34
34
 
35
- * [API Documentation](https://rubydoc.info/github/typhoeus/typhoeus/frames/Typhoeus) (GitHub master)
35
+ * [API Documentation](https://rubydoc.info/github/typhoeus/typhoeus) (GitHub master)
36
36
 
37
37
  ## Usage
38
38
 
@@ -1,5 +1,5 @@
1
1
  module Typhoeus
2
2
 
3
3
  # The current Typhoeus version.
4
- VERSION = '1.5.0'
4
+ VERSION = '1.6.0'
5
5
  end
data/typhoeus.gemspec CHANGED
@@ -24,7 +24,7 @@ Gem::Specification.new do |s|
24
24
  'source_code_uri' => "https://github.com/typhoeus/typhoeus/tree/v#{s.version}"
25
25
  }
26
26
 
27
- s.add_dependency('ethon', [">= 0.9.0", "< 0.16.0"])
27
+ s.add_dependency('ethon', [">= 0.18.0"])
28
28
 
29
29
  s.files = Dir.chdir(__dir__) do
30
30
  `git ls-files -z`.split("\x0").reject do |file|
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: typhoeus
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.5.0
4
+ version: 1.6.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - David Balatero
@@ -17,20 +17,14 @@ dependencies:
17
17
  requirements:
18
18
  - - ">="
19
19
  - !ruby/object:Gem::Version
20
- version: 0.9.0
21
- - - "<"
22
- - !ruby/object:Gem::Version
23
- version: 0.16.0
20
+ version: 0.18.0
24
21
  type: :runtime
25
22
  prerelease: false
26
23
  version_requirements: !ruby/object:Gem::Requirement
27
24
  requirements:
28
25
  - - ">="
29
26
  - !ruby/object:Gem::Version
30
- version: 0.9.0
31
- - - "<"
32
- - !ruby/object:Gem::Version
33
- version: 0.16.0
27
+ version: 0.18.0
34
28
  description: Like a modern code version of the mythical beast with 100 serpent heads,
35
29
  Typhoeus runs HTTP requests in parallel while cleanly encapsulating handling logic.
36
30
  email:
@@ -93,10 +87,10 @@ licenses:
93
87
  - MIT
94
88
  metadata:
95
89
  bug_tracker_uri: https://github.com/typhoeus/typhoeus/issues
96
- changelog_uri: https://github.com/typhoeus/typhoeus/blob/v1.5.0/CHANGELOG.md
97
- documentation_uri: https://www.rubydoc.info/gems/typhoeus/1.5.0
90
+ changelog_uri: https://github.com/typhoeus/typhoeus/blob/v1.6.0/CHANGELOG.md
91
+ documentation_uri: https://www.rubydoc.info/gems/typhoeus/1.6.0
98
92
  rubygems_mfa_required: 'true'
99
- source_code_uri: https://github.com/typhoeus/typhoeus/tree/v1.5.0
93
+ source_code_uri: https://github.com/typhoeus/typhoeus/tree/v1.6.0
100
94
  rdoc_options: []
101
95
  require_paths:
102
96
  - lib
@@ -111,7 +105,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
111
105
  - !ruby/object:Gem::Version
112
106
  version: '0'
113
107
  requirements: []
114
- rubygems_version: 3.7.1
108
+ rubygems_version: 4.0.3
115
109
  specification_version: 4
116
110
  summary: Parallel HTTP library on top of libcurl multi.
117
111
  test_files: []