diff --git a/Gemfile b/Gemfile index 6aec58f0..a81e894c 100644 --- a/Gemfile +++ b/Gemfile @@ -6,8 +6,8 @@ gemspec gem 'pry', group: :development group :test do - gem 'actionpack', '5.1.0' - gem 'activerecord', '5.1.0' + gem 'actionpack', '5.1.1' + gem 'activerecord', '5.1.1' # logstash does not release any gems on rubygems, but they have two gemspecs within their repo. # Using the tag is an attempt of having a stable version to test against where we can ensure that # we test against the correct code. diff --git a/lograge.gemspec b/lograge.gemspec index 7c5b8a83..2e485321 100644 --- a/lograge.gemspec +++ b/lograge.gemspec @@ -15,7 +15,7 @@ Gem::Specification.new do |s| s.add_development_dependency 'rspec' s.add_development_dependency 'rubocop', '0.46.0' - s.add_runtime_dependency 'activesupport', '>= 4', '<= 5.1.0' - s.add_runtime_dependency 'actionpack', '>= 4', '<= 5.1.0' - s.add_runtime_dependency 'railties', '>= 4', '<= 5.1.0' + s.add_runtime_dependency 'activesupport', '>= 4', '< 5.2' + s.add_runtime_dependency 'actionpack', '>= 4', '< 5.2' + s.add_runtime_dependency 'railties', '>= 4', '< 5.2' end