summaryrefslogtreecommitdiff
path: root/NEWS
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2018-11-22 07:53:07 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2018-11-22 07:53:07 +0000
commit633fef6dec9f078d7c02b737a76f3aad0ba5ccc8 (patch)
tree066fd47de5067080401333949c4871111a12ad9b /NEWS
parent8a15e0800615a849e93ed3192290bc8315b6c200 (diff)
Enable refinements to public_send.
[Feature #15326] [Fix GH-2019] From: manga_osyo <manga.osyo@gmail.com> git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@65919 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'NEWS')
-rw-r--r--NEWS4
1 files changed, 3 insertions, 1 deletions
diff --git a/NEWS b/NEWS
index 7487b26541..24bd484cc2 100644
--- a/NEWS
+++ b/NEWS
@@ -16,7 +16,9 @@ sufficient information, see the ChangeLog file or Redmine
* <code>$SAFE</code> is a process global state and we can set 0 again. [Feature #14250]
-* refinements take place at block passing. [Feature #14223]
+* refinements takes place at block passing. [Feature #14223]
+
+* refinements takes place at Kernel#public_send. [Feature #15326]
* +else+ without +rescue+ now causes a syntax error. [EXPERIMENTAL]