summaryrefslogtreecommitdiff
path: root/NEWS.md
diff options
context:
space:
mode:
authorMarc-Andre Lafortune <github@marc-andre.ca>2020-12-22 02:50:39 -0500
committerMarc-André Lafortune <github@marc-andre.ca>2020-12-22 13:48:13 -0500
commit5a6d27fe220548eb4ab5232d7f7331b42a66a17f (patch)
treee633596db56b757100b77b842ac3619573e61c60 /NEWS.md
parent1bd7427f29bb0e69e6e03d6d66aac6c9a6f7a300 (diff)
NEWS: combine $SAFE and $KCODE, move lower
Notes
Notes: Merged: https://github.com/ruby/ruby/pull/3974
Diffstat (limited to 'NEWS.md')
-rw-r--r--NEWS.md12
1 files changed, 4 insertions, 8 deletions
diff --git a/NEWS.md b/NEWS.md
index ab9197f7e5..2483f5f42e 100644
--- a/NEWS.md
+++ b/NEWS.md
@@ -40,14 +40,6 @@ sufficient information, see the ChangeLog file or Redmine
# 3.0 => [[[1, {:a=>1}]], {}]
```
-* $SAFE is now a normal global variable with no special behavior.
- C-API methods related to $SAFE have been removed.
- [[Feature #16131]]
-
-* $KCODE is now a normal global variable with no special behavior. No
- warnings are emitted by access/assignment to it, and the assigned
- value will be returned. [[Feature #17136]]
-
* Pattern matching(`case/in`) is no longer experimental. [[Feature #17260]]
* One-line pattern matching is redesigned. [EXPERIMENTAL]
@@ -102,6 +94,10 @@ sufficient information, see the ChangeLog file or Redmine
* {TypeProf}[rdoc-label:label-TypeProf] is experimentally bundled. It is a
type analysis tool for Ruby programs.
+* $SAFE and $KCODE are now normal global variables with no special behavior.
+ C-API methods related to $SAFE have been removed.
+ [[Feature #16131]] [[Feature #17136]]
+
* yield in singleton class definitions in methods is now a SyntaxError
instead of a warning. yield in a class definition outside of a method
is now a SyntaxError instead of a LocalJumpError. [[Feature #15575]]