Skip to content

Commit b0c4f23

Browse files
committed
Drop support for Ruby 2.7
1 parent e8dc395 commit b0c4f23

File tree

5 files changed

+5
-4
lines changed

5 files changed

+5
-4
lines changed

.github/workflows/test.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@ jobs:
1515
os: [ubuntu-latest, windows-latest, macos-latest]
1616
version:
1717
[
18-
2.7,
1918
'3.0',
2019
3.1,
2120
3.2,

.rubocop.yml

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

55
# Metrics.

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@
66
reasons output codes and reasons are currently in beta and are subject to
77
change. We recommend that you use these beta outputs with caution and avoid
88
relying on them for critical applications.
9+
* Ruby 3.0+ is now required. If you're using Ruby 2.7, please use version
10+
2.6.0 of this gem.
911

1012
## v2.6.0 (2024-07-08)
1113

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 2.7 and above.
278+
This gem works with Ruby 3.0 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 = '>= 2.7.0'
18+
spec.required_ruby_version = '>= 3.0'
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)