summaryrefslogtreecommitdiff
path: root/NEWS.md
diff options
context:
space:
mode:
authorBenoit Daloze <eregontp@gmail.com>2020-08-31 21:24:36 +0200
committerBenoit Daloze <eregontp@gmail.com>2020-09-15 21:32:35 +0200
commit9b535f3ff7c2f48e34dd44564df7adc723b81276 (patch)
treeea88978c58cd1cc371e6c51a163edb8e3c64e8c1 /NEWS.md
parentfbba6bd4e3dff7a61965208fecae908f10c4edbe (diff)
Interpolated strings are no longer frozen with frozen-string-literal: true
* Remove freezestring instruction since this was the only usage for it. * [Feature #17104]
Notes
Notes: Merged: https://github.com/ruby/ruby/pull/3488
Diffstat (limited to 'NEWS.md')
-rw-r--r--NEWS.md4
1 files changed, 4 insertions, 0 deletions
diff --git a/NEWS.md b/NEWS.md
index a8f2af97e9..883a20b27f 100644
--- a/NEWS.md
+++ b/NEWS.md
@@ -80,6 +80,9 @@ sufficient information, see the ChangeLog file or Redmine
def square(x) = x * x
```
+* Interpolated String literals are no longer frozen when
+ `# frozen-string-literal: true` is used. [[Feature #17104]]
+
## Command line options
### `--help` option
@@ -373,6 +376,7 @@ Excluding feature bug fixes.
[Feature #16746]: https://bugs.ruby-lang.org/issues/16746
[Feature #16754]: https://bugs.ruby-lang.org/issues/16754
[Feature #16828]: https://bugs.ruby-lang.org/issues/16828
+[Feature #17104]: https://bugs.ruby-lang.org/issues/17104
[Misc #16961]: https://bugs.ruby-lang.org/issues/16961
[Feature #17122]: https://bugs.ruby-lang.org/issues/17122
[GH-2991]: https://github.com/ruby/ruby/pull/2991