From 87a6d6154f7a77bb82d19778cadd2e083e74d9c8 Mon Sep 17 00:00:00 2001 From: Nicholas La Roux Date: Tue, 16 Sep 2025 13:45:30 -0400 Subject: [PATCH] Drop support for Ruby 3.1 as it is EOL --- CHANGELOG.md | 2 ++ README.md | 2 +- rack-mini-profiler.gemspec | 2 +- 3 files changed, 4 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 62367f74..8b7a7423 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,7 @@ # CHANGELOG +- [BREAKING CHANGE] Ruby version 3.2.0 or later is required. [#632](https://github.com/MiniProfiler/rack-mini-profiler/pull/658) + ## 4.0.1 - 2025-07-31 - [FIX] Ensure Rack 2 / 3 cross compatibility [#653](https://github.com/MiniProfiler/rack-mini-profiler/pull/653) diff --git a/README.md b/README.md index d9259586..bb2db32b 100644 --- a/README.md +++ b/README.md @@ -29,7 +29,7 @@ If you feel like taking on any of this start an issue and update us on your prog ## Installation -Install/add to Gemfile in Ruby 3.1+ +Install/add to Gemfile in Ruby 3.2+ ```ruby gem 'rack-mini-profiler' diff --git a/rack-mini-profiler.gemspec b/rack-mini-profiler.gemspec index 2743c254..74b1685f 100644 --- a/rack-mini-profiler.gemspec +++ b/rack-mini-profiler.gemspec @@ -21,7 +21,7 @@ Gem::Specification.new do |s| "CHANGELOG.md" ] s.add_runtime_dependency 'rack', '>= 1.2.0' - s.required_ruby_version = '>= 3.1.0' + s.required_ruby_version = '>= 3.2.0' s.metadata = { 'source_code_uri' => Rack::MiniProfiler::SOURCE_CODE_URI,