aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorkosaki <kosaki@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2011-07-12 14:42:48 +0000
committerkosaki <kosaki@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2011-07-12 14:42:48 +0000
commit8cf76cae70190cd533d6f9a114281ea01da9cd90 (patch)
tree04a6ac6b1d060b6ead3dd179a12d09cf49ccf0a7
parent55b3bfbc4cf890cb2ebd6b7853189edd442bdad9 (diff)
downloadruby-8cf76cae70190cd533d6f9a114281ea01da9cd90.tar.gz
* NEWS: add a description of Signal.trap change.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@32529 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r--ChangeLog4
-rw-r--r--NEWS12
2 files changed, 15 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 1f2bf0848c..f74f2e1116 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+Tue Jul 12 23:41:49 2011 KOSAKI Motohiro <kosaki.motohiro@gmail.com>
+
+ * NEWS: add a description of Signal.trap change.
+
Tue Jul 12 20:02:35 2011 KOSAKI Motohiro <kosaki.motohiro@gmail.com>
* signal.c (reserved_signal_p): reverted a part of r32523.
diff --git a/NEWS b/NEWS
index 62797effed..b91bf0d25a 100644
--- a/NEWS
+++ b/NEWS
@@ -12,7 +12,17 @@ with all sufficient information, see the ChangeLog file.
=== C API updates
=== Library updates (outstanding ones only)
+
+* builtin classes
+
+ * Signal
+ * incompatible changes:
+ * Signal.trap raises ArgumentError when :SEGV, :BUS, :ILL, :FPE, :VTALRM
+ are specified.
+
=== Language changes
=== Compatibility issues (excluding feature bug fixes)
- None
+ * Signal.trap
+
+ See above.