summaryrefslogtreecommitdiff
path: root/NEWS
diff options
context:
space:
mode:
authorkosaki <kosaki@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2012-11-26 14:55:56 +0000
committerkosaki <kosaki@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2012-11-26 14:55:56 +0000
commit23d5c282b4df78b5f6b8684c0d9f5aece7dd3f70 (patch)
tree15416d1f526180e0ff1b3d5143b2f80aa858f848 /NEWS
parent39d38ff82f3a6158d2adc5883b86691a424ed1c0 (diff)
* NEWS: update for Thread#join incompatible change.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@37866 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'NEWS')
-rw-r--r--NEWS7
1 files changed, 7 insertions, 0 deletions
diff --git a/NEWS b/NEWS
index ac994b0b4c..61ab041883 100644
--- a/NEWS
+++ b/NEWS
@@ -151,6 +151,9 @@ with all sufficient information, see the ChangeLog file.
variable has been set.
* added Thread#backtrace_locations which returns similar information of
Kernel#caller_locations.
+ * incompatible changes:
+ * Thread#join no longer allows to be used from trap handler. Now it raises
+ ThreadError.
* Time
* change return value:
@@ -343,3 +346,7 @@ with all sufficient information, see the ChangeLog file.
* OpenStruct new methods can conflict with custom attributes named
"each_pair", "eql?", "hash" or "to_h".
+
+ * Thread#join
+
+ See above.