Skip to content

Commit

Permalink
We don't know for sure the next version will be 6
Browse files Browse the repository at this point in the history
While I believe 6 is the next planned release, plans can change.
  • Loading branch information
albus522 committed Apr 13, 2018
1 parent 5760bf8 commit 84b0004
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ platforms :jruby do
if ENV['RAILS_VERSION'] == 'edge'
gem 'railties', :github => 'rails/rails'
else
gem 'railties', (ENV['RAILS_VERSION'] || ['>= 3.0', '< 6.0'])
gem 'railties', (ENV['RAILS_VERSION'] || ['>= 3.0', '< 5.3'])
end
end

Expand All @@ -30,8 +30,8 @@ group :test do
gem 'actionmailer', :github => 'rails/rails'
gem 'activerecord', :github => 'rails/rails'
else
gem 'actionmailer', (ENV['RAILS_VERSION'] || ['>= 3.0', '< 6.0'])
gem 'activerecord', (ENV['RAILS_VERSION'] || ['>= 3.0', '< 6.0'])
gem 'actionmailer', (ENV['RAILS_VERSION'] || ['>= 3.0', '< 5.3'])
gem 'activerecord', (ENV['RAILS_VERSION'] || ['>= 3.0', '< 5.3'])
end

gem 'coveralls', :require => false
Expand Down
2 changes: 1 addition & 1 deletion delayed_job.gemspec
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# -*- encoding: utf-8 -*-

Gem::Specification.new do |spec|
spec.add_dependency 'activesupport', ['>= 3.0', '< 6.0']
spec.add_dependency 'activesupport', ['>= 3.0', '< 5.3']
spec.authors = ['Brandon Keepers', 'Brian Ryckbost', 'Chris Gaffney', 'David Genord II', 'Erik Michaels-Ober', 'Matt Griffin', 'Steve Richert', 'Tobias Lütke']
spec.description = 'Delayed_job (or DJ) encapsulates the common pattern of asynchronously executing longer tasks in the background. It is a direct extraction from Shopify where the job table is responsible for a multitude of core tasks.'
spec.email = ['brian@collectiveidea.com']
Expand Down

2 comments on commit 84b0004

@shanecav84
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Just an FYI: a Rails maintainer says the next version will be Rails 6.

@albus522
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Like my commit message says, yes, that is the current plan, but it hasn't happened yet and plans can change.

Please sign in to comment.