Skip to content

Commit 9edd1da

Browse files
authored
Bump minimum requirement to Ruby 3.2 (#166)
Ruby 3.1 got EOL'd 31/3/2025
1 parent 2d65eec commit 9edd1da

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
strategy:
1515
fail-fast: false
1616
matrix:
17-
ruby: ["3.1", "3.2", "3.3", "3.4"]
17+
ruby: ["3.2", "3.3", "3.4"]
1818
rails: ["7.1", "7.2", "8.0"]
1919
continue-on-error: [false]
2020

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ changelog, see the [commits] for each version via the version links.
99

1010
[Unreleased]: https://github.com/teoljungberg/fx/compare/v0.9.0..HEAD
1111

12+
- Require Ruby >= 3.2 (#166)
1213
- Add Ruby 3.4 to the test matrix (#161)
1314
- Require Ruby >= 3.1 (#162)
1415
- Drop EOL Ruby versions (3.0) (#162)

fx.gemspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,5 +27,5 @@ Gem::Specification.new do |spec|
2727
spec.add_dependency "activerecord", ">= 7.0"
2828
spec.add_dependency "railties", ">= 7.0"
2929

30-
spec.required_ruby_version = ">= 3.1"
30+
spec.required_ruby_version = ">= 3.2"
3131
end

0 commit comments

Comments
 (0)