Skip to content

Commit 6bb0726

Browse files
authored
Merge pull request #71 from maxmind/horgh/ruby-version
Test on Ruby 3.3
2 parents 7632b9e + b36962a commit 6bb0726

File tree

6 files changed

+11
-7
lines changed

6 files changed

+11
-7
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,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: 2 additions & 2 deletions
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

@@ -56,7 +56,7 @@ This library uses [Semantic Versioning](https://semver.org/).
5656

5757
## Copyright and License
5858

59-
This software is Copyright (c) 2018 - 2023 by MaxMind, Inc.
59+
This software is Copyright (c) 2018 - 2024 by MaxMind, Inc.
6060

6161
This is free software, licensed under the [Apache License, Version
6262
2.0](LICENSE-APACHE) or the [MIT License](LICENSE-MIT), at your option.

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)