From: Steve Peters Date: Wed, 28 Dec 2005 03:27:13 +0000 (+0000) Subject: Upgrade to PathTools-3.15 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=6a288e044b9e7ec704a0ff87485b0c15610869fd;p=p5sagit%2Fp5-mst-13.2.git Upgrade to PathTools-3.15 p4raw-id: //depot/perl@26508 --- diff --git a/ext/Cwd/Changes b/ext/Cwd/Changes index cf018a3..52f263a 100644 --- a/ext/Cwd/Changes +++ b/ext/Cwd/Changes @@ -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 diff --git a/lib/Cwd.pm b/lib/Cwd.pm index 693d888..b6f0a2a 100644 --- a/lib/Cwd.pm +++ b/lib/Cwd.pm @@ -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); diff --git a/lib/File/Spec.pm b/lib/File/Spec.pm index 8f26544..4554eb1 100644 --- a/lib/File/Spec.pm +++ b/lib/File/Spec.pm @@ -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',