diff options
author | Rafael Garcia-Suarez <rgarciasuarez@gmail.com> | 2005-08-30 09:38:54 +0000 |
---|---|---|
committer | Rafael Garcia-Suarez <rgarciasuarez@gmail.com> | 2005-08-30 09:38:54 +0000 |
commit | b2b4ec814a5af6e0a2f7557c1a67c4b86af2f630 (patch) | |
tree | 365dde7ee3f0a309e50b759e96a4a391a183d3a9 | |
parent | 30153bd2d5be8850a491380e0cb47c72a21e8c02 (diff) | |
download | perl-b2b4ec814a5af6e0a2f7557c1a67c4b86af2f630.tar.gz |
Upgrade to PathTools 3.11
(no real changes)
p4raw-id: //depot/perl@25338
-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 8155127ae2..a2fb444df7 100644 --- a/ext/Cwd/Changes +++ b/ext/Cwd/Changes @@ -1,5 +1,10 @@ Revision history for Perl distribution PathTools. +3.11 Sat Aug 27 20:12:55 CDT 2005 + + - Fixed a couple of typos in the documentation for + File::Spec::Mac. [Piotr Fusik] + 3.10 Thu Aug 25 22:24:57 CDT 2005 - eliminate_macros() and fixpath() in File::Spec::VMS are now diff --git a/lib/Cwd.pm b/lib/Cwd.pm index c00dbc5f69..23cf924f58 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.10'; +$VERSION = '3.11'; @ISA = qw/ Exporter /; @EXPORT = qw(cwd getcwd fastcwd fastgetcwd); diff --git a/lib/File/Spec.pm b/lib/File/Spec.pm index ae1cd93436..13bde5d218 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.10'; +$VERSION = '3.11'; $VERSION = eval $VERSION; my %module = (MacOS => 'Mac', |