summaryrefslogtreecommitdiff
path: root/NEWS
diff options
context:
space:
mode:
authorshyouhei <shyouhei@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2016-10-26 02:34:06 +0000
committershyouhei <shyouhei@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2016-10-26 02:34:06 +0000
commit722ac44a75cf86739f2a0a4060e21ac3b92e06e2 (patch)
tree687aef8897ca9644e40b095cf8edb2897123c76b /NEWS
parentd977cd4e0af5233a6de97f06ed143b2753d2e0e9 (diff)
* NEWS: added several entries [ci skip]
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@56490 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'NEWS')
-rw-r--r--NEWS19
1 files changed, 19 insertions, 0 deletions
diff --git a/NEWS b/NEWS
index 90761c4eca..52101ecb66 100644
--- a/NEWS
+++ b/NEWS
@@ -22,6 +22,9 @@ with all sufficient information, see the ChangeLog file or Redmine
* Refinements is enabled with Kernel#send and BasicObject#__send__.
[Feature #11476]
+* Resque modifier now applicable to method arguments.
+ [Feature #12686]
+
=== Core classes updates (outstanding ones only)
* Array
@@ -35,6 +38,9 @@ with all sufficient information, see the ChangeLog file or Redmine
This is different from Enumerable#sum in that Array#sum doesn't depend on
the definition of each method.
+ * Array#concat [Feature #12333]
+ Now takes multiple arguments.
+
* Comparable
* Comparable#clamp. [Feature #10594]
@@ -91,6 +97,10 @@ with all sufficient information, see the ChangeLog file or Redmine
* Module.used_modules [Feature #7418]
+* Numeric
+
+ * Numeric#finite?, Numeric#infinite? [Feature #12039]
+
* Regexp
* Regexp#match? [Feature #8110]
@@ -112,6 +122,9 @@ with all sufficient information, see the ChangeLog file or Redmine
* String.new(capacity: size) [Feature #12024]
+ * String#concat, String#prepend [Feature #12333]
+ Now takes multiple arguments.
+
* Symbol
* Symbol#match now returns MatchData. [Bug #11991]
@@ -198,6 +211,10 @@ with all sufficient information, see the ChangeLog file or Redmine
is processed, but the operation has to be limited to ASCII only.
A good example of this are internationalized domain names.
+* TRUE / FALSE / NIL
+ These constants are now obsoleted. [Feature #12574]
+ Use true / false / nil resp. instead.
+
=== Stdlib compatibility issues (excluding feature bug fixes)
* DateTime
@@ -224,6 +241,8 @@ with all sufficient information, see the ChangeLog file or Redmine
RUBY_SHOW_COPYRIGHT_TO_DIE is set to 0. This will be the default in
the future.
+* rb_gc_adjust_memory_usage() [Feature #12690]
+
=== Supported platform changes
* FreeBSD < 4 is no longer supported