diff options
-rw-r--r-- | ext/Cwd/Changes | 5 | ||||
-rw-r--r-- | lib/Cwd.pm | 2 | ||||
-rw-r--r-- | lib/File/Spec.pm | 2 |
3 files changed, 7 insertions, 2 deletions
diff --git a/ext/Cwd/Changes b/ext/Cwd/Changes index 91082438f0..867c7b59da 100644 --- a/ext/Cwd/Changes +++ b/ext/Cwd/Changes @@ -1,5 +1,10 @@ Revision history for Perl distribution PathTools. +3.08 Sat May 28 10:10:29 CDT 2005 + + - Fixed a test failure with fast_abs_path() on Windows - it was + sensitive to the rootdir() change from version 3.07. [Steve Hay] + 3.07 Fri May 6 07:46:45 CDT 2005 - Fixed a bug in which the special perl variable $^O would become diff --git a/lib/Cwd.pm b/lib/Cwd.pm index a568f48fde..d00c8fe0a0 100644 --- a/lib/Cwd.pm +++ b/lib/Cwd.pm @@ -170,7 +170,7 @@ use strict; use Exporter; use vars qw(@ISA @EXPORT @EXPORT_OK $VERSION); -$VERSION = '3.07_01'; +$VERSION = '3.08'; @ISA = qw/ Exporter /; @EXPORT = qw(cwd getcwd fastcwd fastgetcwd); diff --git a/lib/File/Spec.pm b/lib/File/Spec.pm index 0c5c0c02f3..985ff7bf4c 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.07'; +$VERSION = '3.08'; $VERSION = eval $VERSION; my %module = (MacOS => 'Mac', |