Skip to content

Commit 3244808

Browse files
committed
Drop support for EOL Ruby versions 3.0 and 3.1
1 parent 06e4f90 commit 3244808

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
@@ -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
@@ -4,7 +4,7 @@ plugins:
44
- rubocop-rake
55

66
AllCops:
7-
TargetRubyVersion: '3.0'
7+
TargetRubyVersion: '3.2'
88
NewCops: enable
99

1010
# Metrics are too arbitrary.

CHANGELOG.md

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

3+
## 1.4.0
4+
5+
* Ruby 3.2+ is now required. If you're using Ruby 3.0 or 3.1, please use
6+
version 1.3.0 of this gem.
7+
38
## 1.3.0 (2025-05-06)
49

510
* Support for the GeoIP Anonymous Plus database has been added. To do a

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -347,7 +347,7 @@ client API, please see [our support page](https://www.maxmind.com/en/support).
347347

348348
## Requirements
349349

350-
This code requires Ruby version 3.0 or higher.
350+
This code requires Ruby version 3.2 or higher.
351351

352352
## Contributing
353353

maxmind-geoip2.gemspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ Gem::Specification.new do |s|
2424
'rubygems_mfa_required' => 'true',
2525
'source_code_uri' => 'https://github.com/maxmind/GeoIP2-ruby',
2626
}
27-
s.required_ruby_version = '>= 3.0'
27+
s.required_ruby_version = '>= 3.2'
2828

2929
s.add_dependency 'connection_pool', ['~> 2.2']
3030
s.add_dependency 'http', '>= 4.3', '< 6.0'

0 commit comments

Comments
 (0)