From: Nicholas Clark Date: Thu, 15 Jul 2004 16:28:03 +0000 (+0000) Subject: Assimilate Cwd 2.19 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=7ada78df9739acac44e6c9a8f1e08c978571e2a0;p=p5sagit%2Fp5-mst-13.2.git Assimilate Cwd 2.19 p4raw-id: //depot/perl@23118 --- diff --git a/ext/Cwd/Changes b/ext/Cwd/Changes index 68d85ca..f6974b8 100644 --- a/ext/Cwd/Changes +++ b/ext/Cwd/Changes @@ -1,5 +1,10 @@ Revision history for Perl extension Cwd. +2.19 Thu Jul 15 08:32:18 CDT 2004 + + - The abs_path($arg) fix from 2.18 didn't work for VMS, now it's + fixed there. [Craig Berry] + 2.18 Thu Jun 24 08:22:57 CDT 2004 - Fixed a problem in which abs_path($arg) on some platforms could diff --git a/ext/Cwd/t/cwd.t b/ext/Cwd/t/cwd.t index 8064346..52427e6 100644 --- a/ext/Cwd/t/cwd.t +++ b/ext/Cwd/t/cwd.t @@ -3,7 +3,7 @@ BEGIN { chdir 't' if -d 't'; if ($ENV{PERL_CORE}) { - @INC = '../lib'; + @INC = '../lib'; } } use Cwd; @@ -185,4 +185,3 @@ sub path_ends_with { my $bracketed_expect = quotemeta bracketed_form_path($expect); like( bracketed_form_path($dir), qr|$bracketed_expect$|i, (@_ ? shift : ()) ); } - diff --git a/lib/Cwd.pm b/lib/Cwd.pm index 37fdcfa..b0dad20 100644 --- a/lib/Cwd.pm +++ b/lib/Cwd.pm @@ -1,5 +1,5 @@ package Cwd; -$VERSION = $VERSION = '2.18'; +$VERSION = $VERSION = '2.19'; =head1 NAME