From c07b2329eda5fcd82d8cb0b8f6f2187d09e8f2ad Mon Sep 17 00:00:00 2001 From: Yasuo Honda Date: Tue, 11 Nov 2025 23:44:30 +0900 Subject: [PATCH] [ruby/psych] Replace Ruby 3.5 with Ruby 4.0 This commit updates the Ruby version to follow the commit in Ruby master branch. https://github.com/ruby/ruby/commit/6d81969b475262aba251e99b518181bdf7c5a523 https://github.com/ruby/psych/commit/971b7de078 --- ext/psych/lib/psych/core_ext.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ext/psych/lib/psych/core_ext.rb b/ext/psych/lib/psych/core_ext.rb index fc259fd4a2..78fe262239 100644 --- a/ext/psych/lib/psych/core_ext.rb +++ b/ext/psych/lib/psych/core_ext.rb @@ -20,7 +20,7 @@ end # Up to Ruby 3.4, Set was a regular object and was dumped as such # by Pysch. -# Starting from Ruby 3.5 it's a core class written in C, so we have to implement +# Starting from Ruby 4.0 it's a core class written in C, so we have to implement # #encode_with / #init_with to preserve backward compatibility. if defined?(::Set) && Set.new.instance_variables.empty? class Set