From 2cb2cffc262ff4bb06961c01c95289b1896955c5 Mon Sep 17 00:00:00 2001 From: "Abinoam P. Marques Jr" Date: Thu, 27 Apr 2023 10:31:23 -0300 Subject: Raise Ruby version requirement to 3.0 Ruby 2.7 is tagged End of Life (not even security maintanence) since this month. We (Highline) traditionally try to maintain compatibility with old rubies. But rubies bellow 2.7.1 lack "io/console" or they have incompatibilities. (as discussed in PR #259) So, this EOL of 2.7 signal to us that is time for us to move on. People relying on old versions of Highline will probably face no problem with it. But we will be free to start removing old code that is necessary only for retrocompatibility in newer versions. --- highline.gemspec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/highline.gemspec b/highline.gemspec index e19f557..b463d69 100644 --- a/highline.gemspec +++ b/highline.gemspec @@ -27,7 +27,7 @@ DESCRIPTION spec.extra_rdoc_files = %w[README.md TODO Changelog.md LICENSE] - spec.required_ruby_version = ">= 2.3" + spec.required_ruby_version = ">= 3.0" spec.add_development_dependency "bundler" spec.add_development_dependency "rake" -- cgit v1.2.1