You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+4-1Lines changed: 4 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -13,6 +13,9 @@ Compatibility:
13
13
Changes:
14
14
15
15
* An interop read message sent to a `Proc` will no longer call the `Proc`.
16
+
17
+
Performance:
18
+
16
19
* Several `String` methods have been made faster by the usage of vector instructions
17
20
when searching for a single-byte character in a String.
18
21
@@ -71,7 +74,7 @@ Changes:
71
74
Performance:
72
75
73
76
*`eval(code, binding)` for a fixed `code` containing blocks is now much faster. This improves the performance of rendering `ERB` templates containing loops.
74
-
*`rb_str_cat`has been changed to improve performance. THe C string is now concatentated without first being converted to a Ruby string or having its encoding checked. As a side effect the behaviour of `rb_str_cat` should now more closely match that of MRI.
77
+
*`rb_str_cat`is faster due to the C string now being concatenated without first being converted to a Ruby string or having its encoding checked. As a side effect the behaviour of `rb_str_cat` should now more closely match that of MRI.
0 commit comments