Skip to content

Commit

Permalink
Require Rails 6.0+, dropping 5.2 support
Browse files Browse the repository at this point in the history
  • Loading branch information
sambostock committed Jun 29, 2022
1 parent 877399f commit 7684070
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 13 deletions.
6 changes: 1 addition & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,8 @@ jobs:
strategy:
matrix:
ruby: ["2.7", "3.0", "3.1"]
gemfile: [rails_5_2, rails_6_0, rails_6_1, rails_7_0, rails_edge]
gemfile: [rails_6_0, rails_6_1, rails_7_0, rails_edge]
exclude:
- ruby: "3.0"
gemfile: rails_5_2
- ruby: "3.1"
gemfile: rails_5_2
- ruby: "3.1"
gemfile: rails_6_0
include:
Expand Down
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
### Master (unreleased)

- [241](https://github.com/Shopify/job-iteration/pull/241) - Require Ruby 2.7+, dropping 2.6 support
- [241](https://github.com/Shopify/job-iteration/pull/241) - Require Rails 6.0+, dropping 5.2 support

## v1.3.6 (Mar 9, 2022)

Expand Down
2 changes: 1 addition & 1 deletion Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ PATH
remote: .
specs:
job-iteration (1.3.6)
activejob (>= 5.2)
activejob (>= 6.0)

GEM
remote: https://rubygems.org/
Expand Down
6 changes: 0 additions & 6 deletions gemfiles/rails_5_2.gemfile

This file was deleted.

2 changes: 1 addition & 1 deletion job-iteration.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -27,5 +27,5 @@ Gem::Specification.new do |spec|
spec.metadata["allowed_push_host"] = "https://rubygems.org"

spec.add_development_dependency("activerecord")
spec.add_dependency("activejob", ">= 5.2")
spec.add_dependency("activejob", ">= 6.0")
end

0 comments on commit 7684070

Please sign in to comment.