summaryrefslogtreecommitdiff
path: root/NEWS
diff options
context:
space:
mode:
authorNobuyoshi Nakada <nobu@ruby-lang.org>2019-06-02 00:42:57 +0900
committerNobuyoshi Nakada <nobu@ruby-lang.org>2019-06-02 00:42:57 +0900
commit09c09eb0db6c14c532935081c9b79d38fdc81f6b (patch)
tree41460c56dc656b4081024421587fb342caf6afa8 /NEWS
parent3afae5b572bbf6b066ef90648917cbc5028dd4f6 (diff)
NEWS: move GC.compact
From "Implementation improvements" to "Core classes updates".
Diffstat (limited to 'NEWS')
-rw-r--r--NEWS20
1 files changed, 11 insertions, 9 deletions
diff --git a/NEWS b/NEWS
index 0902dbfb85..d768117969 100644
--- a/NEWS
+++ b/NEWS
@@ -75,6 +75,17 @@ FrozenError::
FrozenError in Ruby code, pass it as the second argument to
FrozenError.new.
+GC::
+
+ New method::
+
+ * Added GC.compact method for compacting the heap.
+ This function compacts live objects in the heap so that fewer pages may
+ be used, and the heap may be more CoW friendly. [Feature #15626]
+
+ Details on the algorithm and caveats can be found here:
+ https://bugs.ruby-lang.org/issues/15626
+
Integer::
Modified method::
@@ -168,15 +179,6 @@ JIT::
* Default value of +--jit-min-calls+ is changed from 5 to 10,000
-GC::
-
- * New `GC.compact` method for compacting the heap.
- This function compacts live objects in the heap so that fewer pages may
- be used, and the heap may be more CoW friendly. [Feature #15626]
-
- Details on the algorithm and caveats can be found here:
- https://bugs.ruby-lang.org/issues/15626
-
=== Miscellaneous changes
* Require compilers to support C99 [Misc #15347]