summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGo MAEDA <maeda@farend.jp>2025-04-09 02:02:40 +0000
committerGo MAEDA <maeda@farend.jp>2025-04-09 02:02:40 +0000
commitfc22603b05e86582c22c1199c0502b46dd0d904d (patch)
treea8c6ef54d41e1279cd9896b348d9af15cd436a48
parentefe6f15276e4a5911fc7e1b522a82c142e9d458d (diff)
downloadredmine-fc22603b05e86582c22c1199c0502b46dd0d904d.tar.gz
redmine-fc22603b05e86582c22c1199c0502b46dd0d904d.zip
Add Ruby 3.4 to supported Ruby versions (#41976).
Patch by Katsuya HIDAKA (user:hidakatsuya). git-svn-id: https://svn.redmine.org/redmine/trunk@23612 e93f8b46-1217-0410-a6f0-8f06a7374b81
-rw-r--r--.github/workflows/tests.yml2
-rw-r--r--Gemfile2
-rw-r--r--doc/INSTALL2
3 files changed, 3 insertions, 3 deletions
diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml
index 12b507b0e..1900d387f 100644
--- a/.github/workflows/tests.yml
+++ b/.github/workflows/tests.yml
@@ -10,7 +10,7 @@ jobs:
strategy:
matrix:
- ruby: ['3.1', '3.2', '3.3']
+ ruby: ['3.1', '3.2', '3.3', '3.4']
db: ['postgresql', 'mysql2', 'sqlite3']
fail-fast: false
diff --git a/Gemfile b/Gemfile
index 32f710c54..90426b64c 100644
--- a/Gemfile
+++ b/Gemfile
@@ -1,6 +1,6 @@
source 'https://rubygems.org'
-ruby '>= 3.1.0', '< 3.4.0'
+ruby '>= 3.1.0', '< 3.5.0'
gem 'rails', '7.2.2.1'
gem 'rouge', '~> 4.5'
diff --git a/doc/INSTALL b/doc/INSTALL
index 89c85479d..67f2288da 100644
--- a/doc/INSTALL
+++ b/doc/INSTALL
@@ -7,7 +7,7 @@ https://www.redmine.org/
== Requirements
-* Ruby 3.1, 3.2, 3.3
+* Ruby 3.1, 3.2, 3.3, 3.4
* A database:
* MySQL (tested with MySQL 8)