From 7dc9b575efec6cec514c8552835ce75330c44ad2 Mon Sep 17 00:00:00 2001 From: Javier Aranda Date: Thu, 21 Aug 2025 13:34:25 +0200 Subject: [PATCH] Increment required ruby minimal version to 3.2 --- .github/workflows/testing.yml | 8 ++++---- class_variants.gemspec | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/testing.yml b/.github/workflows/testing.yml index 11846bf..9047043 100644 --- a/.github/workflows/testing.yml +++ b/.github/workflows/testing.yml @@ -8,10 +8,10 @@ jobs: fail-fast: false matrix: ruby: - - "3.0" - - "3.1" - "3.2" - "3.3" + - "3.4" + - "3.5" steps: - uses: actions/checkout@v4 - name: Setup Ruby ${{ matrix.ruby }} @@ -28,10 +28,10 @@ jobs: fail-fast: false matrix: ruby: - - "3.0" - - "3.1" - "3.2" - "3.3" + - "3.4" + - "3.5" steps: - uses: actions/checkout@v4 - name: Setup Ruby ${{ matrix.ruby }} diff --git a/class_variants.gemspec b/class_variants.gemspec index b83c725..fbdf389 100644 --- a/class_variants.gemspec +++ b/class_variants.gemspec @@ -21,5 +21,5 @@ Gem::Specification.new do |s| s.files = Dir["lib/**/*", "LICENSE", "README.md"] # ruby minimal version - s.required_ruby_version = Gem::Requirement.new(">= 3.0") + s.required_ruby_version = Gem::Requirement.new(">= 3.2") end