Skip to content

Commit 50f1a88

Browse files
committed
Drop Ruby 2.6 support
The required IRB version only supports 2.7+
1 parent fd4a4a9 commit 50f1a88

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

.github/workflows/protocol.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
strategy:
2222
fail-fast: false
2323
matrix:
24-
ruby-version: ['2.6', '2.7', '3.0', '3.1', 'head', 'debug']
24+
ruby-version: ["2.7", "3.0", "3.1", "head", "debug"]
2525

2626
steps:
2727
- uses: actions/checkout@v4

.github/workflows/ruby.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
strategy:
2222
fail-fast: false
2323
matrix:
24-
ruby-version: ['2.6', '2.7', '3.0', '3.1', '3.2', 'head', 'debug']
24+
ruby-version: ["2.7", "3.0", "3.1", "3.2", "head", "debug"]
2525

2626
steps:
2727
- uses: actions/checkout@v4

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
# debug.rb
44

5-
This library provides debugging functionality to Ruby (MRI) 2.6 and later.
5+
This library provides debugging functionality to Ruby (MRI) 2.7 and later.
66

77
This debug.rb is replacement of traditional lib/debug.rb standard library which is implemented by `set_trace_func`.
88
New debug.rb has several advantages:

debug.gemspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ Gem::Specification.new do |spec|
1010
spec.description = %q{Debugging functionality for Ruby. This is completely rewritten debug.rb which was contained by the ancient Ruby versions.}
1111
spec.homepage = "https://github.com/ruby/debug"
1212
spec.licenses = ["Ruby", "BSD-2-Clause"]
13-
spec.required_ruby_version = Gem::Requirement.new(">= 2.6.0")
13+
spec.required_ruby_version = Gem::Requirement.new(">= 2.7.0")
1414

1515
spec.metadata["homepage_uri"] = spec.homepage
1616
spec.metadata["source_code_uri"] = spec.homepage

misc/README.md.erb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
# debug.rb
44

5-
This library provides debugging functionality to Ruby (MRI) 2.6 and later.
5+
This library provides debugging functionality to Ruby (MRI) 2.7 and later.
66

77
This debug.rb is replacement of traditional lib/debug.rb standard library which is implemented by `set_trace_func`.
88
New debug.rb has several advantages:

0 commit comments

Comments
 (0)