Skip to content

Commit 8d7db99

Browse files
authored
Drop support for Ruby 3.1 as it is EOL (#658)
1 parent 92610ca commit 8d7db99

3 files changed

Lines changed: 4 additions & 2 deletions

File tree

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
# CHANGELOG
22

3+
- [BREAKING CHANGE] Ruby version 3.2.0 or later is required. [#632](https://github.com/MiniProfiler/rack-mini-profiler/pull/658)
4+
35
## 4.0.1 - 2025-07-31
46

57
- [FIX] Ensure Rack 2 / 3 cross compatibility [#653](https://github.com/MiniProfiler/rack-mini-profiler/pull/653)

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ If you feel like taking on any of this start an issue and update us on your prog
2929

3030
## Installation
3131

32-
Install/add to Gemfile in Ruby 3.1+
32+
Install/add to Gemfile in Ruby 3.2+
3333

3434
```ruby
3535
gem 'rack-mini-profiler'

rack-mini-profiler.gemspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ Gem::Specification.new do |s|
2121
"CHANGELOG.md"
2222
]
2323
s.add_runtime_dependency 'rack', '>= 1.2.0'
24-
s.required_ruby_version = '>= 3.1.0'
24+
s.required_ruby_version = '>= 3.2.0'
2525

2626
s.metadata = {
2727
'source_code_uri' => Rack::MiniProfiler::SOURCE_CODE_URI,

0 commit comments

Comments
 (0)