ruby-changes:73477
From: rm155 <ko1@a...>
Date: Thu, 8 Sep 2022 14:31:59 +0900 (JST)
Subject: [ruby-changes:73477] 78af05ba0f (master): [ruby/forwardable] Freeze VERSION and FORWARDABLE_VERSION to improve Ractor-compliance
https://git.ruby-lang.org/ruby.git/commit/?id=78af05ba0f From 78af05ba0f29d1fc290dc24a6a5fb645386e7d62 Mon Sep 17 00:00:00 2001 From: rm155 <rohitmenon@v...> Date: Tue, 27 Jul 2021 12:47:31 -0400 Subject: [ruby/forwardable] Freeze VERSION and FORWARDABLE_VERSION to improve Ractor-compliance https://github.com/ruby/forwardable/commit/c91f41f4fa --- lib/forwardable.rb | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lib/forwardable.rb b/lib/forwardable.rb index c9c4128f9f..9318639f01 100644 --- a/lib/forwardable.rb +++ b/lib/forwardable.rb @@ -113,7 +113,9 @@ module Forwardable https://github.com/ruby/ruby/blob/trunk/lib/forwardable.rb#L113 # Version of +forwardable.rb+ VERSION = "1.3.2" + VERSION.freeze FORWARDABLE_VERSION = VERSION + FORWARDABLE_VERSION.freeze @debug = nil class << self -- cgit v1.2.1 -- ML: ruby-changes@q... Info: http://www.atdot.net/~ko1/quickml/