Skip to content

Commit

Permalink
relax dependencies to allow currently released major versions
Browse files Browse the repository at this point in the history
fixes #430 and closes #433
  • Loading branch information
ashkulz committed Dec 31, 2022
1 parent 60cd2cc commit c7e4e97
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions pronto.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -40,11 +40,11 @@ Gem::Specification.new do |s|
s.require_paths = ['lib']
s.executables = s.files.grep(%r{^bin/}) { |f| File.basename(f) }

s.add_runtime_dependency('gitlab', '~> 4.4', '>= 4.4.0')
s.add_runtime_dependency('httparty', '>= 0.13.7')
s.add_runtime_dependency('octokit', '~> 4.7', '>= 4.7.0')
s.add_runtime_dependency('gitlab', '>= 4.4.0', '< 5.0')
s.add_runtime_dependency('httparty', '>= 0.13.7', '< 1.0')
s.add_runtime_dependency('octokit', '>= 4.7.0', '< 7.0')
s.add_runtime_dependency('rainbow', '>= 2.2', '< 4.0')
s.add_runtime_dependency('rexml', '~> 3.2', '>= 3.2.5')
s.add_runtime_dependency('rexml', '>= 3.2.5', '< 4.0')
s.add_runtime_dependency('rugged', '>= 0.23.0', '< 2.0')
s.add_runtime_dependency('thor', '>= 0.20.3', '< 2.0')
s.add_development_dependency('bundler', '>= 1.15')
Expand Down

0 comments on commit c7e4e97

Please sign in to comment.