1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

* 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
This commit is contained in:
knu 2007-03-17 19:28:37 +00:00
parent 8641054e5f
commit 08eecd0adc
2 changed files with 23 additions and 6 deletions

View file

@ -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;

19
NEWS
View file

@ -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.