diff --git a/Gemfile.lock b/Gemfile.lock index 7026836..dc4c047 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,10 +1,10 @@ PATH remote: . specs: - unit-ruby (0.4.0) + unit-ruby (0.4.1) activesupport (>= 6.1.5, < 7.1.0) - faraday (>= 1.10, < 3) - faraday-retry + faraday (>= 2, < 3) + faraday-retry (>= 2, < 3) GEM remote: https://rubygems.org/ diff --git a/lib/unit-ruby/version.rb b/lib/unit-ruby/version.rb index 5dfc4e1..29d54ca 100644 --- a/lib/unit-ruby/version.rb +++ b/lib/unit-ruby/version.rb @@ -1,3 +1,3 @@ module Unit - VERSION = '0.4.0' + VERSION = '0.4.1' end diff --git a/spec/version_spec.rb b/spec/version_spec.rb index a673bb6..7510d10 100644 --- a/spec/version_spec.rb +++ b/spec/version_spec.rb @@ -2,6 +2,6 @@ RSpec.describe Unit do it 'returns the correct version' do - expect(Unit::VERSION).to eq '0.4.0' + expect(Unit::VERSION).to eq '0.4.1' end end diff --git a/unit-ruby.gemspec b/unit-ruby.gemspec index 907ba1e..7b2b112 100644 --- a/unit-ruby.gemspec +++ b/unit-ruby.gemspec @@ -35,8 +35,8 @@ Gem::Specification.new do |spec| spec.require_paths = ['lib'] spec.add_dependency 'activesupport', '>= 6.1.5', '< 7.1.0' - spec.add_dependency 'faraday', '>= 1.10', '< 3' - spec.add_dependency 'faraday-retry' + spec.add_dependency 'faraday', '>= 2', '< 3' + spec.add_dependency 'faraday-retry', '>= 2', '< 3' spec.add_development_dependency 'bundler', '~> 2.4.0' spec.add_development_dependency 'dotenv', '~> 2.7.6'