summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ext/B/B/Assembler.pm2
-rw-r--r--ext/Data/Dumper/Dumper.pm2
-rw-r--r--lib/AutoLoader.pm2
-rw-r--r--lib/AutoSplit.pm2
-rw-r--r--lib/CPAN.pm2
-rw-r--r--lib/ExtUtils/Embed.pm2
-rw-r--r--lib/ExtUtils/Install.pm2
-rw-r--r--lib/ExtUtils/Installed.pm2
-rw-r--r--lib/ExtUtils/Manifest.pm2
-rw-r--r--lib/File/Basename.pm2
-rw-r--r--lib/File/Copy.pm2
-rw-r--r--lib/File/Find.pm2
-rw-r--r--lib/File/Path.pm2
-rw-r--r--lib/File/Spec.pm2
-rw-r--r--lib/File/Spec/Functions.pm2
-rw-r--r--lib/File/Spec/Unix.pm2
-rw-r--r--lib/File/Spec/VMS.pm2
-rw-r--r--lib/File/Spec/Win32.pm2
-rw-r--r--lib/FindBin.pm2
-rw-r--r--lib/Pod/Checker.pm2
-rw-r--r--lib/Pod/Find.pm2
-rw-r--r--lib/SelfLoader.pm2
-rw-r--r--lib/Shell.pm2
-rw-r--r--lib/Tie/Handle.pm2
-rw-r--r--lib/blib.pm2
-rwxr-xr-xlib/diagnostics.pm2
-rw-r--r--vms/ext/DCLsym/DCLsym.pm2
-rw-r--r--vms/ext/Stdio/Stdio.pm2
28 files changed, 28 insertions, 28 deletions
diff --git a/ext/B/B/Assembler.pm b/ext/B/B/Assembler.pm
index e573cefc89..86f0962e38 100644
--- a/ext/B/B/Assembler.pm
+++ b/ext/B/B/Assembler.pm
@@ -14,7 +14,7 @@ require ByteLoader; # we just need its $VERSIOM
@ISA = qw(Exporter);
@EXPORT_OK = qw(assemble_fh newasm endasm assemble);
-$VERSION = 0.02;
+$VERSION = 0.03;
use strict;
my %opnumber;
diff --git a/ext/Data/Dumper/Dumper.pm b/ext/Data/Dumper/Dumper.pm
index 4f15bbb289..77e9426af9 100644
--- a/ext/Data/Dumper/Dumper.pm
+++ b/ext/Data/Dumper/Dumper.pm
@@ -9,7 +9,7 @@
package Data::Dumper;
-$VERSION = '2.102';
+$VERSION = '2.103';
#$| = 1;
diff --git a/lib/AutoLoader.pm b/lib/AutoLoader.pm
index 4b2261ed7d..4e1eb1b064 100644
--- a/lib/AutoLoader.pm
+++ b/lib/AutoLoader.pm
@@ -16,7 +16,7 @@ BEGIN {
$is_epoc = $^O eq 'epoc';
$is_vms = $^O eq 'VMS';
$is_macos = $^O eq 'MacOS';
- $VERSION = '5.58';
+ $VERSION = '5.59';
}
AUTOLOAD {
diff --git a/lib/AutoSplit.pm b/lib/AutoSplit.pm
index 25e29c3a98..ff2e8b5b6c 100644
--- a/lib/AutoSplit.pm
+++ b/lib/AutoSplit.pm
@@ -11,7 +11,7 @@ use strict;
our($VERSION, @ISA, @EXPORT, @EXPORT_OK, $Verbose, $Keep, $Maxlen,
$CheckForAutoloader, $CheckModTime);
-$VERSION = "1.0306";
+$VERSION = "1.0307";
@ISA = qw(Exporter);
@EXPORT = qw(&autosplit &autosplit_lib_modules);
@EXPORT_OK = qw($Verbose $Keep $Maxlen $CheckForAutoloader $CheckModTime);
diff --git a/lib/CPAN.pm b/lib/CPAN.pm
index 5ee7dc8083..faf965a60e 100644
--- a/lib/CPAN.pm
+++ b/lib/CPAN.pm
@@ -1,6 +1,6 @@
# -*- Mode: cperl; coding: utf-8; cperl-indent-level: 4 -*-
package CPAN;
-$VERSION = '1.59_54';
+$VERSION = '1.59_55';
# $Id: CPAN.pm,v 1.385 2001/02/09 21:37:57 k Exp $
# only used during development:
diff --git a/lib/ExtUtils/Embed.pm b/lib/ExtUtils/Embed.pm
index fc1e985c37..6bf9c038e7 100644
--- a/lib/ExtUtils/Embed.pm
+++ b/lib/ExtUtils/Embed.pm
@@ -18,7 +18,7 @@ use vars qw(@ISA @EXPORT $VERSION
);
use strict;
-$VERSION = sprintf("%d.%02d", q$Revision: 1.2505_00 $ =~ /(\d+)\.(\d+)/);
+$VERSION = sprintf("%d.%02d", q$Revision: 1.2506_00 $ =~ /(\d+)\.(\d+)/);
@ISA = qw(Exporter);
@EXPORT = qw(&xsinit &ldopts
diff --git a/lib/ExtUtils/Install.pm b/lib/ExtUtils/Install.pm
index 86131332cb..15e6e9c79e 100644
--- a/lib/ExtUtils/Install.pm
+++ b/lib/ExtUtils/Install.pm
@@ -2,7 +2,7 @@ package ExtUtils::Install;
use 5.005_64;
our(@ISA, @EXPORT, $VERSION);
-$VERSION = substr q$Revision: 1.28 $, 10;
+$VERSION = substr q$Revision: 1.29 $, 10;
# $Date: 1998/01/25 07:08:24 $
use Exporter;
diff --git a/lib/ExtUtils/Installed.pm b/lib/ExtUtils/Installed.pm
index 12cb5e0b4c..4c379e14fa 100644
--- a/lib/ExtUtils/Installed.pm
+++ b/lib/ExtUtils/Installed.pm
@@ -8,7 +8,7 @@ use ExtUtils::MakeMaker;
use Config;
use File::Find;
use File::Basename;
-our $VERSION = '0.03';
+our $VERSION = '0.04';
my $DOSISH = ($^O =~ /^(MSWin\d\d|os2|dos|mint)$/);
diff --git a/lib/ExtUtils/Manifest.pm b/lib/ExtUtils/Manifest.pm
index e626fa1180..4656eadf99 100644
--- a/lib/ExtUtils/Manifest.pm
+++ b/lib/ExtUtils/Manifest.pm
@@ -12,7 +12,7 @@ our ($VERSION,@ISA,@EXPORT_OK,
$Is_MacOS,$Is_VMS,
$Debug,$Verbose,$Quiet,$MANIFEST,$found,$DEFAULT_MSKIP);
-$VERSION = substr(q$Revision: 1.34 $, 10);
+$VERSION = substr(q$Revision: 1.35 $, 10);
@ISA=('Exporter');
@EXPORT_OK = ('mkmanifest', 'manicheck', 'fullcheck', 'filecheck',
'skipcheck', 'maniread', 'manicopy');
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);
diff --git a/lib/FindBin.pm b/lib/FindBin.pm
index c1b782c5dd..41cd0fa507 100644
--- a/lib/FindBin.pm
+++ b/lib/FindBin.pm
@@ -82,7 +82,7 @@ use File::Spec;
%EXPORT_TAGS = (ALL => [qw($Bin $Script $RealBin $RealScript $Dir $RealDir)]);
@ISA = qw(Exporter);
-$VERSION = "1.42";
+$VERSION = "1.43";
BEGIN
{
diff --git a/lib/Pod/Checker.pm b/lib/Pod/Checker.pm
index d6fbfff992..79bb2f616e 100644
--- a/lib/Pod/Checker.pm
+++ b/lib/Pod/Checker.pm
@@ -10,7 +10,7 @@
package Pod::Checker;
use vars qw($VERSION);
-$VERSION = 1.2; ## Current version of this package
+$VERSION = 1.3; ## Current version of this package
require 5.005; ## requires this Perl version or later
use Pod::ParseUtils; ## for hyperlinks and lists
diff --git a/lib/Pod/Find.pm b/lib/Pod/Find.pm
index 6e5f5708bd..c1aaac47ab 100644
--- a/lib/Pod/Find.pm
+++ b/lib/Pod/Find.pm
@@ -13,7 +13,7 @@
package Pod::Find;
use vars qw($VERSION);
-$VERSION = 0.21; ## Current version of this package
+$VERSION = 0.22; ## Current version of this package
require 5.005; ## requires this Perl version or later
use Carp;
diff --git a/lib/SelfLoader.pm b/lib/SelfLoader.pm
index 51124af6b4..59defe0bb2 100644
--- a/lib/SelfLoader.pm
+++ b/lib/SelfLoader.pm
@@ -3,7 +3,7 @@ package SelfLoader;
require Exporter;
@ISA = qw(Exporter);
@EXPORT = qw(AUTOLOAD);
-$VERSION = "1.0902";
+$VERSION = "1.0903";
sub Version {$VERSION}
$DEBUG = 0;
diff --git a/lib/Shell.pm b/lib/Shell.pm
index 44318d200e..defb5d7109 100644
--- a/lib/Shell.pm
+++ b/lib/Shell.pm
@@ -4,7 +4,7 @@ use strict;
use warnings;
our($capture_stderr, $VERSION, $AUTOLOAD);
-$VERSION = '0.3';
+$VERSION = '0.4';
sub new { bless \$VERSION, shift } # Nothing better to bless
sub DESTROY { }
diff --git a/lib/Tie/Handle.pm b/lib/Tie/Handle.pm
index 638cdf7861..d8e5526352 100644
--- a/lib/Tie/Handle.pm
+++ b/lib/Tie/Handle.pm
@@ -1,7 +1,7 @@
package Tie::Handle;
use 5.005_64;
-our $VERSION = '4.0';
+our $VERSION = '4.1';
=head1 NAME
diff --git a/lib/blib.pm b/lib/blib.pm
index aaecd4569b..9797f2f229 100644
--- a/lib/blib.pm
+++ b/lib/blib.pm
@@ -39,7 +39,7 @@ Nick Ing-Simmons nik@tiuk.ti.com
use Cwd;
use vars qw($VERSION $Verbose);
-$VERSION = '1.00';
+$VERSION = '1.01';
$Verbose = 0;
sub import
diff --git a/lib/diagnostics.pm b/lib/diagnostics.pm
index b2249430b2..5d8f4e7c8f 100755
--- a/lib/diagnostics.pm
+++ b/lib/diagnostics.pm
@@ -171,7 +171,7 @@ use strict;
use 5.6.0;
use Carp;
-our $VERSION = 1.0;
+our $VERSION = 1.1;
our $DEBUG;
our $VERBOSE;
our $PRETTY;
diff --git a/vms/ext/DCLsym/DCLsym.pm b/vms/ext/DCLsym/DCLsym.pm
index 9f88c91db2..884e35783e 100644
--- a/vms/ext/DCLsym/DCLsym.pm
+++ b/vms/ext/DCLsym/DCLsym.pm
@@ -7,7 +7,7 @@ use strict;
# Package globals
@ISA = ( 'DynaLoader' );
-$VERSION = '1.01';
+$VERSION = '1.02';
my(%Locsyms) = ( ':ID' => 'LOCAL' );
my(%Gblsyms) = ( ':ID' => 'GLOBAL');
my $DoCache = 1;
diff --git a/vms/ext/Stdio/Stdio.pm b/vms/ext/Stdio/Stdio.pm
index e36a3ec15b..a68e796f3a 100644
--- a/vms/ext/Stdio/Stdio.pm
+++ b/vms/ext/Stdio/Stdio.pm
@@ -13,7 +13,7 @@ use Carp '&croak';
use DynaLoader ();
use Exporter ();
-$VERSION = '2.2';
+$VERSION = '2.3';
@ISA = qw( Exporter DynaLoader IO::File );
@EXPORT = qw( &O_APPEND &O_CREAT &O_EXCL &O_NDELAY &O_NOWAIT
&O_RDONLY &O_RDWR &O_TRUNC &O_WRONLY );