Upgrade to PathTools-3.15
Steve Peters [Wed, 28 Dec 2005 03:27:13 +0000 (03:27 +0000)]
p4raw-id: //depot/perl@26508

ext/Cwd/Changes
lib/Cwd.pm
lib/File/Spec.pm

index cf018a3..52f263a 100644 (file)
@@ -1,11 +1,13 @@
 Revision history for Perl distribution PathTools.
 
-3.14_01  Fri Dec  9 22:45:49 CST 2005
+3.15  Tue Dec 27 14:17:39 CST 2005
 
  - The Cwd::getcwd() function on *nix is now a direct pass-through to
    the underlying getcwd() C library function when possible.  This is
    safer and faster than the previous implementation, which just did
-   abs_path('.'). [Suggested by Nick Ing-Simmons]
+   abs_path('.').  The pure-perl version has been kept for cases in
+   which the XS version can't load, such as when running under
+   miniperl. [Suggested by Nick Ing-Simmons]
 
  - When Cwd searches for a 'pwd' executable in the $PATH, we now stop
    after we find the first one rather than continuing the search.  We
index 693d888..b6f0a2a 100644 (file)
@@ -171,7 +171,7 @@ use strict;
 use Exporter;
 use vars qw(@ISA @EXPORT @EXPORT_OK $VERSION);
 
-$VERSION = '3.14_02';
+$VERSION = '3.15';
 
 @ISA = qw/ Exporter /;
 @EXPORT = qw(cwd getcwd fastcwd fastgetcwd);
index 8f26544..4554eb1 100644 (file)
@@ -3,7 +3,7 @@ package File::Spec;
 use strict;
 use vars qw(@ISA $VERSION);
 
-$VERSION = '3.14_01';
+$VERSION = '3.15';
 $VERSION = eval $VERSION;
 
 my %module = (MacOS   => 'Mac',