diff options
| author | Yasuo Honda <yasuo.honda@gmail.com> | 2025-11-11 23:44:30 +0900 |
|---|---|---|
| committer | git <svn-admin@ruby-lang.org> | 2025-11-11 21:05:11 +0000 |
| commit | c07b2329eda5fcd82d8cb0b8f6f2187d09e8f2ad (patch) | |
| tree | d77d9d6cec230c7ba38601371225033c85f7cad7 | |
| parent | ade2b51a3b3ccdd9fe97d541c3dbb51339838d44 (diff) | |
[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
| -rw-r--r-- | ext/psych/lib/psych/core_ext.rb | 2 |
1 files changed, 1 insertions, 1 deletions
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 |
