Skip to content

Commit b36962a

Browse files
committed
Drop support for Ruby 2.5 and 2.6
1 parent 296fd3d commit b36962a

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

33
AllCops:
4-
TargetRubyVersion: 2.5
4+
TargetRubyVersion: 2.7
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.3.0
4+
5+
* Ruby 2.5 and 2.6 are no longer supported. If you're using one of these
6+
versions, please use version 1.2.0 of this gem.
7+
38
## 1.2.0 (2023-11-22)
49

510
* Ruby 2.4 is no longer supported. If you're using Ruby 2.4, please use

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 2.5 or higher.
38+
This code requires Ruby version 2.7 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 = '>= 2.5.0'
22+
s.required_ruby_version = '>= 2.7.0'
2323

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

0 commit comments

Comments
 (0)