diff options
| author | knu <knu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2007-03-17 19:28:37 +0000 |
|---|---|---|
| committer | knu <knu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2007-03-17 19:28:37 +0000 |
| commit | 08eecd0adc290119353a900bcd638c2e9c56c8cb (patch) | |
| tree | 7ab9fe3e1a559abf05c2bf792f8ddfadd73ec345 | |
| parent | 8641054e5f8afeec16ab6f798e8697097185c616 (diff) | |
* NEWS: Add a note about the new `date' library defining
Time#to_date and Time#to_datetime private methods.
* NEWS: Inform that the old `thread' library is considered to be
stable.
* NEWS: Sort library entries in alphabetical order.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_8@12088 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
| -rw-r--r-- | ChangeLog | 10 | ||||
| -rw-r--r-- | NEWS | 19 |
2 files changed, 23 insertions, 6 deletions
@@ -1,3 +1,13 @@ +Sun Mar 18 04:23:52 2007 Akinori MUSHA <knu@iDaemons.org> + + * NEWS: Add a note about the new `date' library defining + Time#to_date and Time#to_datetime private methods. + + * NEWS: Inform that the old `thread' library is considered to be + stable. + + * NEWS: Sort library entries in alphabetical order. + Fri Mar 16 21:48:11 2007 Akinori MUSHA <knu@iDaemons.org> * ext/dl/dl.c (rb_ary2cary): Fix a bug in type validation; @@ -81,9 +81,9 @@ with all sufficient information, see the ChangeLog file. * thread - * Replaced with much faster mutex implementation in C. - The former implementation is available with a configure option - `--disable-fastthread'. + * Replaced with much faster mutex implementation in C. The former + implementation, which is slow but considered to be stable, is + available with a configure option `--disable-fastthread'. * webrick @@ -96,10 +96,12 @@ with all sufficient information, see the ChangeLog file. * String#intern now raises SecurityError when $SAFE level is greater than zero. -* fileutils +* date - * A minor implementation change breaks Rake <=0.7.1. - Updating Rake to 0.7.2 or higher fixes the problem. + * Time#to_date and Time#to_datetime are added as private methods. + They cause name conflict error in ActiveSupport 1.4.1 and prior, + which comes with Rails 1.2.2 and prior. Updating ActiveSupport + and/or Rails to the latest versions fixes the problem. * digest @@ -115,3 +117,8 @@ with all sufficient information, see the ChangeLog file. hd = Digest::MD5.new("string").hexdigest # After (works with any version) hd = Digest::MD5.hexdigest("string") + +* fileutils + + * A minor implementation change breaks Rake <=0.7.1. + Updating Rake to 0.7.2 or higher fixes the problem. |
