Skip to content

Commit 7ff8bd8

Browse files
committed
- Drop support for Ruby 3.0 and 3.1
1 parent 7faf4ca commit 7ff8bd8

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

.github/workflows/test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
runs-on: ubuntu-latest
1111

1212
strategy:
13-
matrix: { ruby: ['3.0', '3.1', '3.2', '3.3'] }
13+
matrix: { ruby: ['3.2', '3.3', '3.4'] }
1414

1515
steps:
1616
- name: Checkout code
@@ -67,7 +67,7 @@ jobs:
6767
- name: Setup Ruby
6868
uses: ruby/setup-ruby@v1
6969
with:
70-
ruby-version: '3.1'
70+
ruby-version: '3.4'
7171
bundler-cache: true
7272

7373
- name: Test schema

.rubocop.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ inherit_gem:
88
- rspec.yml
99

1010
AllCops:
11-
TargetRubyVersion: 3.0
11+
TargetRubyVersion: 3.2
1212
SuggestExtensions: false
1313
Exclude:
1414
- 'spec/approvals/**/*'

completely.gemspec

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@ Gem::Specification.new do |s|
1414
s.homepage = 'https://github.com/DannyBen/completely'
1515
s.license = 'MIT'
1616

17-
s.required_ruby_version = '>= 3.0'
17+
s.required_ruby_version = '>= 3.2'
1818

19-
s.add_dependency 'colsole', '>= 0.8.1', '< 2'
19+
s.add_dependency 'colsole', '~> 1.0.0'
2020
s.add_dependency 'mister_bin', '~> 0.7'
2121

2222
s.metadata = {

0 commit comments

Comments
 (0)