From 17433aedc7bd7a54f9be096c2cb6879791cd2ff0 Mon Sep 17 00:00:00 2001 From: Kazuhiro NISHIYAMA Date: Tue, 26 Dec 2023 10:04:24 +0900 Subject: [PATCH] Fold OLD_VERSIONS --- Rakefile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Rakefile b/Rakefile index 142ef8b1e5..d1a7dea2ef 100644 --- a/Rakefile +++ b/Rakefile @@ -1,5 +1,8 @@ # coding: utf-8 -OLD_VERSIONS = %w[1.8.7 1.9.3 2.0.0 2.1.0 2.2.0 2.3.0 2.4.0 2.5.0 2.6.0] +OLD_VERSIONS = %w[ + 1.8.7 1.9.3 + 2.0.0 2.1.0 2.2.0 2.3.0 2.4.0 2.5.0 2.6.0 +] SUPPORTED_VERSIONS = %w[2.7.0 3.0 3.1 3.2] UNRELEASED_VERSIONS = %w[3.3] ALL_VERSIONS = [*OLD_VERSIONS, *SUPPORTED_VERSIONS, *UNRELEASED_VERSIONS]