Skip to content

Commit ac14726

Browse files
committed
Drop Ruby 3.0 support
1 parent 47ffeda commit ac14726

File tree

3 files changed

+5
-6
lines changed

3 files changed

+5
-6
lines changed

.github/workflows/main.yml

+3-4
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,10 @@ jobs:
99
strategy:
1010
matrix:
1111
ruby:
12-
- '3.0.7'
1312
- '3.1.6'
14-
- '3.2.4'
15-
- '3.3.3'
16-
13+
- '3.2.7'
14+
- '3.3.7'
15+
- '3.4.2'
1716
steps:
1817
- uses: actions/checkout@v4
1918
- name: Set up Ruby

.rubocop.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ inherit_mode:
77
- Exclude
88

99
AllCops:
10-
TargetRubyVersion: 3.0
10+
TargetRubyVersion: 3.1
1111
NewCops: enable
1212
Exclude:
1313
- "gemfiles/**/*"

mailtrap.gemspec

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ Gem::Specification.new do |spec|
1212
spec.description = 'Official mailtrap.io API client'
1313
spec.homepage = 'https://github.com/railsware/mailtrap-ruby'
1414
spec.license = 'MIT'
15-
spec.required_ruby_version = '>= 3.0.0'
15+
spec.required_ruby_version = '>= 3.1.0'
1616

1717
spec.metadata['homepage_uri'] = spec.homepage
1818
spec.metadata['source_code_uri'] = 'https://github.com/railsware/mailtrap-ruby'

0 commit comments

Comments
 (0)