Skip to content

Commit 3a0838e

Browse files
authored
Merge pull request #93 from maxmind/horgh/eol
Drop support for EOL Ruby versions 3.0 and 3.1
2 parents 19d95bb + 6277957 commit 3a0838e

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
@@ -1,7 +1,7 @@
11
require: rubocop-performance
22

33
AllCops:
4-
TargetRubyVersion: '3.0'
4+
TargetRubyVersion: '3.2'
55
NewCops: enable
66

77
# 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.2 of this gem.
7+
38
## 1.3.2 (2025-04-03)
49

510
* Re-release to fix a release script problem. There are no code changes.

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ For more information see the
3535

3636
## Requirements
3737

38-
This code requires Ruby version 3.0 or higher.
38+
This code requires Ruby version 3.2 or higher.
3939

4040
## Contributing
4141

maxmind-db.gemspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ Gem::Specification.new do |s|
1919
'source_code_uri' => 'https://github.com/maxmind/MaxMind-DB-Reader-ruby',
2020
'rubygems_mfa_required' => 'true',
2121
}
22-
s.required_ruby_version = '>= 3.0'
22+
s.required_ruby_version = '>= 3.2'
2323

2424
s.add_development_dependency 'minitest'
2525
s.add_development_dependency 'rake'

0 commit comments

Comments
 (0)