Skip to content

Commit 4f9b88b

Browse files
authored
Merge pull request #90 from maxmind/horgh/ruby-version
Test on Ruby 3.3
2 parents debee96 + 20ead25 commit 4f9b88b

File tree

7 files changed

+12
-8
lines changed

7 files changed

+12
-8
lines changed

.github/workflows/rubocop.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,6 @@ jobs:
1313
- uses: actions/checkout@v4
1414
- uses: ruby/setup-ruby@v1
1515
with:
16-
ruby-version: 3.2
16+
ruby-version: 3.3
1717
- run: bundle install
1818
- run: bundle exec rake -t rubocop

.github/workflows/test.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,12 +15,11 @@ 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,
2321
3.2,
22+
3.3,
2423
jruby,
2524
]
2625
exclude:

.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`.

LICENSE.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
The MIT License (MIT)
22

33
Copyright (c) 2016-2020 kushnir.yb
4-
Copyright (c) 2020-2023 MaxMind, Inc.
4+
Copyright (c) 2020-2024 MaxMind, Inc.
55

66
Permission is hereby granted, free of charge, to any person obtaining a copy
77
of this software and associated documentation files (the "Software"), to deal

README.md

Lines changed: 2 additions & 2 deletions
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
@@ -293,7 +293,7 @@ This API uses [Semantic Versioning](https://semver.org/).
293293
294294
Copyright (c) 2016-2020 kushnir.yb.
295295
296-
Copyright (c) 2020-2023 MaxMind, Inc.
296+
Copyright (c) 2020-2024 MaxMind, Inc.
297297
298298
The gem is available as open source under the terms of the [MIT
299299
License](https://opensource.org/licenses/MIT).

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)