Skip to content

Commit

Permalink
Drop support for EOL Rails 6.1
Browse files Browse the repository at this point in the history
This is now EOL as well, since October 1st 2024
https://rubyonrails.org/maintenance
  • Loading branch information
Tabby committed Oct 10, 2024
1 parent 4e73274 commit cfcd865
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
strategy:
matrix:
ruby-version: [3.1, 3.2, 3.3]
rails-version: [6.1, 7.0, 7.1, 7.2]
rails-version: [7.0, 7.1, 7.2]
runs-on: ubuntu-latest
env:
RAILS_VERSION: ${{ matrix.rails-version }}
Expand Down
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# v1.5.0

- Drop support for EOL Ruby 3.0
- Drop support for EOL Ruby 3.0 (EOL since April 1st 2024)
- Drop support for EOL Rails 6.1 (EOL since October 1st 2024)
- Add support for Rails 7.2
- Fix Dependabot updates

Expand Down
4 changes: 2 additions & 2 deletions anony.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,8 @@ Gem::Specification.new do |spec|
spec.add_dependency "activerecord", "~> #{ENV['RAILS_VERSION']}"
spec.add_dependency "activesupport", "~> #{ENV['RAILS_VERSION']}"
else
spec.add_dependency "activerecord", ">= 6.1", "< 8"
spec.add_dependency "activesupport", ">= 6.1", "< 8"
spec.add_dependency "activerecord", ">= 7.0", "< 8"
spec.add_dependency "activesupport", ">= 7.0", "< 8"
end
spec.metadata["rubygems_mfa_required"] = "true"
end

0 comments on commit cfcd865

Please sign in to comment.