summaryrefslogtreecommitdiff
path: root/ChangeLog
diff options
context:
space:
mode:
authorwyhaines <wyhaines@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2009-08-25 18:37:21 +0000
committerwyhaines <wyhaines@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2009-08-25 18:37:21 +0000
commitb1e55e5b923685e3fb1110f0dfba85de10d6045b (patch)
tree5277a571d14d6f23a27377ebe76abb9ea45fd006 /ChangeLog
parenta0343dd9a490e45f3210ca70a038b2a4a4c6961c (diff)
Fix for backport #1168 -- wrong result of File.extname for a path that contains a space before the extension.
Fix for backport #1975 -- the test suite for backport #1168 uses Dir.mktmpdir, which was backported into 1.8 HEAD and 1.8.7 in the past. This change for 1.8.6 doesn't break anything already existing in 1.8.6, and is a pure-ruby addition, so it was backported. See http://redmine.ruby-lang.org/issues/show/1975 git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_8_6@24653 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'ChangeLog')
-rw-r--r--ChangeLog12
1 files changed, 9 insertions, 3 deletions
diff --git a/ChangeLog b/ChangeLog
index 374c2d3ab9..ad9993cdc7 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,8 +1,14 @@
-Thu Augh 20 9:43:00 2009 Kirk Haines <khaines@ruby-lang.org>
+Tue Aug 25 11:48:00 2009 Kirk Haines <khaines@ruby-lang.org>
- * Backport #1001; Handle EBADF to fix problem with interpreter wide deadlock when native close() is called on fd which is currently being IO#select()ed.
+ * Backport #1168; Wrong result of File.extname for a path that contains a space before the extension.
-Wed Aug 19 1:49:00 2009 Kirk Haines <khaines@ruby-lang.org>
+ * Backport #1975 [ruby-core:25025]; Dir.mktmpdir exists in the rest of the 1.8 line, and it is used in the test suite that goes with backport #1168. It doesn't conflict with any existing 1.8.6 art, and is a pure-ruby addition to Dir, so I backported it to 1.8.6 from 1.8.7.
+
+Thu Aug 20 9:43:00 2009 Kirk Haines <khaines@ruby-lang.org>
+
+ * Backport #1001; Handle EBADF to fix problem with interpreter wide deadlock when native close() is called on fd which is currently being IO#select()ed. r24600
+
+Wed Aug 19 1:49:00 2009 Kirk Haines <khaines@ruby-lang.org>
* Backport #1232; Writes one extra byte to the buffer in order to prevent overrun. r24583