summaryrefslogtreecommitdiff
path: root/NEWS
diff options
context:
space:
mode:
authorko1 <ko1@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2018-02-21 08:14:51 +0000
committerko1 <ko1@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2018-02-21 08:14:51 +0000
commit633b463854e14e584f17a9255bb43b757b9b1f6c (patch)
tree7d19855b1d379d31221815a1f5a161303fda0170 /NEWS
parent322d0d93adfe42fc89c574f67bcb9acb9b82f251 (diff)
add NEWS entries about [Feature #14318] and [Feature #14330].
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@62514 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'NEWS')
-rw-r--r--NEWS9
1 files changed, 9 insertions, 0 deletions
diff --git a/NEWS b/NEWS
index c55c8a98f6..8eb49f95e3 100644
--- a/NEWS
+++ b/NEWS
@@ -58,6 +58,15 @@ with all sufficient information, see the ChangeLog file or Redmine
=== Implementation improvements
+* Speedup `Proc#call` because we dont' need to care about `$SAFE` any more.
+ [Feature #14318]
+ With `lc_fizzbuzz` benchmark which uses so many `Proc#call` we can measure
+ x1.4 improvements [Bug #10212].
+
+* Speedup `block.call` where `block` is passed block parameter. [Feature #14330]
+ Ruby 2.5 improves block passing performance. [Feature #14045]
+ Additionally, Ruby 2.6 improves the performance of passed block calling.
+
* `--jit` option to enable JIT compiler is added. [Feature #14235] [experimental]
* VM generator script renewal; makes the generated VM more optimized. [GH-1779]