Skip to content

Commit 8c084c6

Browse files
authored
Merge pull request #134 from maxmind/horgh/eol
Drop support for EOL Ruby versions 3.0 and 3.1
2 parents 2cee050 + 92511ea commit 8c084c6

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

.github/workflows/test.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,6 @@ jobs:
1717
os: [ubuntu-latest, windows-latest, macos-latest]
1818
version:
1919
[
20-
'3.0',
21-
3.1,
2220
3.2,
2321
3.3,
2422
3.4,

.rubocop.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
AllCops:
2-
TargetRubyVersion: '3.0'
2+
TargetRubyVersion: '3.2'
33
NewCops: enable
44

55
# Metrics.

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@
33
## v2.9.0
44

55
* Added the processor `:securepay` to `Minfraud::Components::Payment`.
6+
* Ruby 3.2+ is now required. If you're using Ruby 3.0 or 3.1, please use
7+
version 2.8.0 of this gem.
68

79
## v2.8.0 (2025-05-23)
810

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -275,7 +275,7 @@ to the client API, please see
275275
276276
## Requirements
277277
278-
This gem works with Ruby 3.0 and above.
278+
This gem works with Ruby 3.2 and above.
279279
280280
## Contributing
281281

minfraud.gemspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ Gem::Specification.new do |spec|
1515
spec.homepage = 'https://github.com/maxmind/minfraud-api-ruby'
1616
spec.license = 'MIT'
1717

18-
spec.required_ruby_version = '>= 3.0'
18+
spec.required_ruby_version = '>= 3.2'
1919

2020
spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^.gitignore$|^(?:\.github|dev-bin|spec)/}) }
2121
spec.bindir = 'exe'

0 commit comments

Comments
 (0)