Skip to content

Commit 693352d

Browse files
committed
Change minimum supported Ruby version to 3.0
1 parent 4a8c52f commit 693352d

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
fail-fast: false
99
matrix:
1010
os: [ubuntu-latest, macos-latest]
11-
ruby: [2.5, 2.6, 2.7, 3.0, 3.1, 3.2, 3.3, 3.4, head, debug]
11+
ruby: [3.0, 3.1, 3.2, 3.3, 3.4, head, debug]
1212
runs-on: ${{ matrix.os }}
1313
continue-on-error: ${{ endsWith(matrix.ruby, 'head') || matrix.ruby == 'debug' }}
1414
env:

.standard.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
ruby_version: 2.5
1+
ruby_version: 3.0

interaktor.gemspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ Gem::Specification.new do |spec|
99
spec.homepage = "https://github.com/taylorthurlow/interaktor"
1010
spec.license = "MIT"
1111
spec.files = `git ls-files`.split
12-
spec.required_ruby_version = ">= 2.5"
12+
spec.required_ruby_version = ">= 3.0"
1313
spec.require_path = "lib"
1414

1515
spec.add_runtime_dependency "dry-schema", "~> 1.0"

0 commit comments

Comments
 (0)