From b63fcc34a7de1d5a6af559088acabde9f6a73dbb Mon Sep 17 00:00:00 2001 From: Sebastian Cohnen Date: Mon, 1 Jun 2026 19:59:51 +0200 Subject: [PATCH 1/3] bumps supported Ruby version to >=3.3 --- mini_racer.gemspec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mini_racer.gemspec b/mini_racer.gemspec index 8eafe2b..3339807 100644 --- a/mini_racer.gemspec +++ b/mini_racer.gemspec @@ -50,5 +50,5 @@ Gem::Specification.new do |spec| ext/mini_racer_extension/extconf.rb ] - spec.required_ruby_version = ">= 3.1" + spec.required_ruby_version = ">= 3.3" end From 195df903cee4be6e9aa55eaee2d976d1995bfc49 Mon Sep 17 00:00:00 2001 From: Sebastian Cohnen Date: Mon, 1 Jun 2026 20:00:10 +0200 Subject: [PATCH 2/3] drops Ruby 3.1 and 3.2 from CI --- .github/workflows/ci.yml | 4 ---- 1 file changed, 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 4986a98..666574e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -56,8 +56,6 @@ jobs: - "macos-26" # arm64 - "macos-26-intel" ruby: - - "ruby-3.1" - - "ruby-3.2" - "ruby-3.3" - "ruby-3.4" - "ruby-4.0" @@ -91,8 +89,6 @@ jobs: fail-fast: false matrix: ruby: - - "3.1" - - "3.2" - "3.3" - "3.4" - "4.0" From 5ca7209151e28c72273687d14db0e58d0d3b693d Mon Sep 17 00:00:00 2001 From: Sebastian Cohnen Date: Mon, 1 Jun 2026 20:00:43 +0200 Subject: [PATCH 3/3] bumps Ruby version in Dockerfile --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index ac27413..6ff3816 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -ARG RUBY_VERSION=3.2 +ARG RUBY_VERSION=4 FROM ruby:${RUBY_VERSION} RUN test ! -f /etc/alpine-release || apk add --no-cache build-base git