Skip to content

Commit edd74d2

Browse files
committed
fix: partially revert dependency constraint changes from #67
In #67, I proposed to update the dependency constraints to allow the gem to be compatible with newer gem versions. I now see that what I did was wrong, while no code changes were done (meaning that the dependency constraints as they were would still work), I made the gem conflict with working gem versions. I updated the constraints to reflect what I was actually trying to do: Make it compatible with newer gem versions, not break compatibility with older working ones. Signed-off-by: Frederik Thuysbaert <[email protected]>
1 parent 0a5b5c9 commit edd74d2

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

rabbitmq_http_api_client.gemspec

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,9 @@ Gem::Specification.new do |gem|
1818
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
1919
gem.require_paths = ["lib"]
2020

21-
gem.add_dependency 'addressable', '~> 2.8'
22-
gem.add_dependency 'hashie', '~> 5.0'
23-
gem.add_dependency 'multi_json', '~> 1.17'
24-
gem.add_dependency 'faraday', '~> 2.14'
25-
gem.add_dependency 'faraday-follow_redirects', '~> 0.4'
21+
gem.add_dependency 'addressable', '~> 2.7'
22+
gem.add_dependency 'hashie', '>= 4.1'
23+
gem.add_dependency 'multi_json', '~> 1.15'
24+
gem.add_dependency 'faraday', '~> 2.9'
25+
gem.add_dependency 'faraday-follow_redirects', '~> 0.3'
2626
end

0 commit comments

Comments
 (0)