Skip to content

Commit

Permalink
Drop support for End-of-Life Ruby and Rails
Browse files Browse the repository at this point in the history
Drop [end-of-life][] Ruby versions 2.7 and 3.0 and drop end-of-life
Rails versions 6.2 and 7.0.

[end-of-life]: https://www.ruby-lang.org/en/downloads/branches/
  • Loading branch information
seanpdoyle committed Oct 24, 2024
1 parent 446679a commit 0351f41
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 9 deletions.
7 changes: 0 additions & 7 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,22 +12,15 @@ jobs:
fail-fast: false
matrix:
ruby:
- "2.7"
- "3.0"
- "3.1"
- "3.2"
- "3.3"
rails:
- "6.1"
- "7.0"
- "7.1"
- "7.2"
include:
- { ruby: "3.2", rails: "main" }
- { ruby: "3.3", rails: "main" }
exclude:
- { ruby: "2.7", rails: "7.2" }
- { ruby: "3.0", rails: "7.2" }

env:
RAILS_VERSION: "${{ matrix.rails }}"
Expand Down
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,13 @@ version links.

## main

Drop [end-of-life Ruby][] versions 2.7 and 3.0.

Drop [end-of-life Rails][] versions 6.1 and 7.0

[end-of-life Ruby]: https://www.ruby-lang.org/en/downloads/branches/
[end-of-life Rails]: https://rubyonrails.org/maintenance

## [0.2.2] - Sep 27, 2024

Expand matrix of supported versions to include `[email protected]` and `[email protected]`.
Expand Down
6 changes: 4 additions & 2 deletions view_partial_form_builder.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,11 @@ Gem::Specification.new do |spec|
spec.description = "A Rails form builder where all designer-facing configuration is via templates."
spec.license = "MIT"

spec.required_ruby_version = ">= 3.1.0"

spec.files = Dir["{app,config,db,lib}/**/*", "MIT-LICENSE", "Rakefile", "README.md"]

spec.add_dependency "actionview"
spec.add_dependency "railties"
spec.add_dependency "actionview", ">= 7.1.0"
spec.add_dependency "railties", ">= 7.1.0"
spec.add_dependency "zeitwerk", ">= 2.4.0"
end

0 comments on commit 0351f41

Please sign in to comment.