Skip to content

Commit

Permalink
Bump minimum Ruby version to 3.1
Browse files Browse the repository at this point in the history
  • Loading branch information
olivierbellone committed Jun 23, 2024
1 parent c145868 commit 2d5ad5b
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
3 changes: 1 addition & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
- uses: ruby/setup-ruby@v1
with:
bundler-cache: true
ruby-version: "3.0"
ruby-version: "3.1"

- name: Run Rubocop
run: |
Expand All @@ -30,7 +30,6 @@ jobs:
fail-fast: false
matrix:
ruby:
- "3.0"
- "3.1"
- "3.2"
- "3.3"
Expand Down
2 changes: 1 addition & 1 deletion .rubocop.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ require:
AllCops:
NewCops: enable
SuggestExtensions: true
TargetRubyVersion: 3.0
TargetRubyVersion: 3.1

Minitest/AssertTruthy:
Enabled: false
Expand Down
2 changes: 1 addition & 1 deletion r.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ Gem::Specification.new do |spec|
"ensure that operations are well-typed and that their inputs and outputs are well-defined."
spec.homepage = "https://github.com/olivierbellone/r"
spec.license = "MIT"
spec.required_ruby_version = ">= 3.0.0"
spec.required_ruby_version = ">= 3.1.0"

spec.metadata["homepage_uri"] = spec.homepage
spec.metadata["source_code_uri"] = spec.homepage
Expand Down
1 change: 1 addition & 0 deletions sorbet/config
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,4 @@
.
--ignore=tmp/
--ignore=vendor/
--suppress-payload-superclass-redefinition-for=Reline::ANSI

0 comments on commit 2d5ad5b

Please sign in to comment.