summaryrefslogtreecommitdiff
path: root/NEWS
diff options
context:
space:
mode:
authorknu <knu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2007-03-17 19:28:37 +0000
committerknu <knu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2007-03-17 19:28:37 +0000
commit08eecd0adc290119353a900bcd638c2e9c56c8cb (patch)
tree7ab9fe3e1a559abf05c2bf792f8ddfadd73ec345 /NEWS
parent8641054e5f8afeec16ab6f798e8697097185c616 (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
Diffstat (limited to 'NEWS')
-rw-r--r--NEWS19
1 files changed, 13 insertions, 6 deletions
diff --git a/NEWS b/NEWS
index 186fcdad7b..a1012741d6 100644
--- a/NEWS
+++ b/NEWS
@@ -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.