diff options
author | Jarkko Hietaniemi <jhi@iki.fi> | 2001-09-16 20:36:58 +0000 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2001-09-16 20:36:58 +0000 |
commit | 88d01e8dd0be693cf54a3bafc9974fa70eda2ddd (patch) | |
tree | 62c32f86dd63b06cd9d32a9201e6c9a8c5526c3e /lib/File | |
parent | a8e8ab15da1db8d0342b4425b514ee293f371382 (diff) | |
download | perl-88d01e8dd0be693cf54a3bafc9974fa70eda2ddd.tar.gz |
Bump up version numbers.
TODO 1: double check that pre-5.6.1 CPAN.pm:s
don't try to download 5.8.0 because of the
version numbers. Mainly this means using _00
in the core version numbers.
TODO 2: the "use 5.005_64" in many modules
needs to be changed to, say, "use 5.6.1".
p4raw-id: //depot/perl@12040
Diffstat (limited to 'lib/File')
-rw-r--r-- | lib/File/Basename.pm | 2 | ||||
-rw-r--r-- | lib/File/Copy.pm | 2 | ||||
-rw-r--r-- | lib/File/Find.pm | 2 | ||||
-rw-r--r-- | lib/File/Path.pm | 2 | ||||
-rw-r--r-- | lib/File/Spec.pm | 2 | ||||
-rw-r--r-- | lib/File/Spec/Functions.pm | 2 | ||||
-rw-r--r-- | lib/File/Spec/Unix.pm | 2 | ||||
-rw-r--r-- | lib/File/Spec/VMS.pm | 2 | ||||
-rw-r--r-- | lib/File/Spec/Win32.pm | 2 |
9 files changed, 9 insertions, 9 deletions
diff --git a/lib/File/Basename.pm b/lib/File/Basename.pm index 72a7e39704..e16f87187e 100644 --- a/lib/File/Basename.pm +++ b/lib/File/Basename.pm @@ -141,7 +141,7 @@ our(@ISA, @EXPORT, $VERSION, $Fileparse_fstype, $Fileparse_igncase); require Exporter; @ISA = qw(Exporter); @EXPORT = qw(fileparse fileparse_set_fstype basename dirname); -$VERSION = "2.7"; +$VERSION = "2.71"; # fileparse_set_fstype() - specify OS-based rules used in future diff --git a/lib/File/Copy.pm b/lib/File/Copy.pm index 861f65f00b..7daa3ed60d 100644 --- a/lib/File/Copy.pm +++ b/lib/File/Copy.pm @@ -24,7 +24,7 @@ sub mv; # package has not yet been updated to work with Perl 5.004, and so it # would be a Bad Thing for the CPAN module to grab it and replace this # module. Therefore, we set this module's version higher than 2.0. -$VERSION = '2.04'; +$VERSION = '2.05'; require Exporter; @ISA = qw(Exporter); diff --git a/lib/File/Find.pm b/lib/File/Find.pm index bfcbcfd008..1ebfba3184 100644 --- a/lib/File/Find.pm +++ b/lib/File/Find.pm @@ -2,7 +2,7 @@ package File::Find; use strict; use warnings; use 5.6.0; -our $VERSION = '1.01'; +our $VERSION = '1.02'; require Exporter; require Cwd; diff --git a/lib/File/Path.pm b/lib/File/Path.pm index 82509c200f..7d56d48f28 100644 --- a/lib/File/Path.pm +++ b/lib/File/Path.pm @@ -98,7 +98,7 @@ use Exporter (); use strict; use warnings; -our $VERSION = "1.0404"; +our $VERSION = "1.0405"; our @ISA = qw( Exporter ); our @EXPORT = qw( mkpath rmtree ); diff --git a/lib/File/Spec.pm b/lib/File/Spec.pm index 19475c0321..023005f1f2 100644 --- a/lib/File/Spec.pm +++ b/lib/File/Spec.pm @@ -3,7 +3,7 @@ package File::Spec; use strict; our(@ISA, $VERSION); -$VERSION = 0.82 ; +$VERSION = 0.83 ; my %module = (MacOS => 'Mac', MSWin32 => 'Win32', diff --git a/lib/File/Spec/Functions.pm b/lib/File/Spec/Functions.pm index be653338fa..dad7aa3d0f 100644 --- a/lib/File/Spec/Functions.pm +++ b/lib/File/Spec/Functions.pm @@ -5,7 +5,7 @@ use strict; our (@ISA,@EXPORT,@EXPORT_OK,%EXPORT_TAGS,$VERSION); -$VERSION = '1.1'; +$VERSION = '1.2'; require Exporter; diff --git a/lib/File/Spec/Unix.pm b/lib/File/Spec/Unix.pm index 1330548e83..6d26660dab 100644 --- a/lib/File/Spec/Unix.pm +++ b/lib/File/Spec/Unix.pm @@ -3,7 +3,7 @@ package File::Spec::Unix; use strict; our($VERSION); -$VERSION = '1.2'; +$VERSION = '1.3'; use Cwd; diff --git a/lib/File/Spec/VMS.pm b/lib/File/Spec/VMS.pm index 295c4efd8e..17996220bd 100644 --- a/lib/File/Spec/VMS.pm +++ b/lib/File/Spec/VMS.pm @@ -4,7 +4,7 @@ use strict; use vars qw(@ISA $VERSION); require File::Spec::Unix; -$VERSION = '1.1'; +$VERSION = '1.2'; @ISA = qw(File::Spec::Unix); diff --git a/lib/File/Spec/Win32.pm b/lib/File/Spec/Win32.pm index 860ae0c2b2..7ee10a1c70 100644 --- a/lib/File/Spec/Win32.pm +++ b/lib/File/Spec/Win32.pm @@ -5,7 +5,7 @@ use Cwd; use vars qw(@ISA $VERSION); require File::Spec::Unix; -$VERSION = '1.2'; +$VERSION = '1.3'; @ISA = qw(File::Spec::Unix); |