Skip to content

Commit 20ead25

Browse files
committed
Drop support for Ruby 2.5 and 2.6
1 parent bac19bb commit 20ead25

File tree

5 files changed

+8
-5
lines changed

5 files changed

+8
-5
lines changed

.github/workflows/test.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,6 @@ jobs:
1515
os: [ubuntu-latest, windows-latest, macos-latest]
1616
version:
1717
[
18-
2.5,
19-
2.6,
2018
2.7,
2119
'3.0',
2220
3.1,

.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.5
2+
TargetRubyVersion: 2.7
33
NewCops: enable
44

55
# Metrics.

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# Changelog
22

3+
## v2.4.0
4+
5+
* Ruby 2.7+ is now required. If you're using Ruby 2.5 or 2.6, please use
6+
version 2.3.0 of this gem.
7+
38
## v2.3.0 (2023-12-04)
49

510
* Added the processor `:shopify_payments` to `Minfraud::Components::Payment`.

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

2020
spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
2121
spec.bindir = 'exe'

0 commit comments

Comments
 (0)