From b80dd17b7abb78287746d5573b3a8d127786fd9e Mon Sep 17 00:00:00 2001 From: knu Date: Tue, 6 Mar 2007 10:12:12 +0000 Subject: Merge changes from ruby_1_8: * ext/digest/lib/md5.rb (MD5::new, MD5::md5): Do not modify Digest::MD5. * ext/digest/lib/sha1.rb (SHA1::new, SHA1::sha1): Ditto. * lib/shell/process-controller.rb: fix thread synchronization problem for [ruby-dev:30477]. * ext/digest/lib/md5.rb (MD5::new, MD5::md5): Catch up with Digest's API changes; noted by: Kazuhiro Yoshida in [ruby-dev:30500]. * ext/digest/lib/sha1.rb (SHA1::new, SHA1::sha1): Ditto. * time.c (time_to_s): Back out the format changes; discussed in [ruby-dev:30495]. * ext/tk/sample/irbtkw.rbw: fails to exit process. git-svn-id: http://svn.ruby-lang.org/repos/ruby/branches/ruby_1_8_6@12008 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- NEWS | 20 ++++++++++++-------- 1 file changed, 12 insertions(+), 8 deletions(-) (limited to 'NEWS') diff --git a/NEWS b/NEWS index 9a0130ec0..de1dafb53 100644 --- a/NEWS +++ b/NEWS @@ -37,6 +37,18 @@ with all sufficient information, see the ChangeLog file. * tk + * Tk::X_Scrollable (Y_Scrollable) is renamed to Tk::XScrollable + (YScrollable). Tk::X_Scrollable (Y_Scrollable) is still available, + but it is an alias name. + + * Updated Tile extension support based on Tile 0.7.8. + + * Support --without-X11 configure option for non-X11 versions of + Tcl/Tk (e.g. Tcl/Tk Aqua). + + * New sample script: irbtkw.rbw -- IRB on Ruby/Tk. It has no trouble + about STDIN blocking on Windows. + === New methods and features * builtin classes @@ -77,14 +89,6 @@ with all sufficient information, see the ChangeLog file. * builtin classes - * Time#to_s now returns a string in a form that - conforms to RFC2822. - - # Before - "Wed Mar 03 12:34:56 JST 2007" - # After - "Wed, 03 Mar 2007 12:34:56 +0900" - * String#intern now raises SecurityError when $SAFE level is greater than zero. -- cgit