summaryrefslogtreecommitdiff
path: root/NEWS
diff options
context:
space:
mode:
authorko1 <ko1@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2014-11-25 08:07:44 +0000
committerko1 <ko1@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2014-11-25 08:07:44 +0000
commitd95aae32ce582b2116169836c8ac6fac7f9abe02 (patch)
treec33031fdc2b5f05995ee4f0ee5cd01c295b001e1 /NEWS
parent711ece42cddc4737a4b1667b1f20ca74030d0255 (diff)
* NEWS: add an "Implementation changes" section.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@48564 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'NEWS')
-rw-r--r--NEWS13
1 files changed, 13 insertions, 0 deletions
diff --git a/NEWS b/NEWS
index bbce1b5765..94e8abc2a6 100644
--- a/NEWS
+++ b/NEWS
@@ -321,3 +321,16 @@ with all sufficient information, see the ChangeLog file.
* jemalloc is optionally supported via `./configure --with-jemalloc`
jemalloc may be suitable when system malloc is slow or prone
to fragmentation. [Feature #9113]
+
+=== Implementation changes
+
+* GC
+ * Most symbols which are returned by String#to_sym and
+ String#intern are GC-able [Feature #9634]
+ * Introduce incremental marking for major GC. [Feature #10137]
+
+* VM
+ * Use frozen string literals for Hash#[] and Hash#[]=
+ * Fast keyword arguments passing [Feature #10440]
+ * Allow to receive huge splatted array by a rest argument
+ [Feature #10440]