This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Bump version numbers of moules affected by change #22258
authorDave Mitchell <davem@fdisolutions.com>
Sat, 28 Feb 2004 23:29:10 +0000 (23:29 +0000)
committerDave Mitchell <davem@fdisolutions.com>
Sat, 28 Feb 2004 23:29:10 +0000 (23:29 +0000)
(removing /tmp and other insecurities)
p4raw-link: @22258 on //depot/perl: 2359510ddb135dcc6e80153f51cff0a97b20b597

p4raw-id: //depot/perl@22409

ext/DB_File/DB_File.pm
ext/Devel/PPPort/PPPort.pm
ext/Socket/Socket.pm
ext/Storable/Storable.pm
ext/Time/HiRes/HiRes.pm
lib/CGI/Cookie.pm
lib/ExtUtils/MakeMaker.pm
lib/Memoize.pm
lib/Shell.pm
lib/perl5db.pl

index a3cd082..a965e82 100644 (file)
@@ -165,7 +165,7 @@ our ($db_version, $use_XSLoader, $splice_end_array);
 use Carp;
 
 
-$VERSION = "1.808" ;
+$VERSION = "1.808_01" ;
 
 {
     local $SIG{__WARN__} = sub {$splice_end_array = "@_";};
index e97311b..48f08a8 100644 (file)
@@ -161,7 +161,7 @@ require DynaLoader;
 use strict;
 use vars qw( $VERSION @ISA @EXPORT @EXPORT_OK $data );
 
-$VERSION = "2.011";
+$VERSION = "2.011_01";
 
 @ISA = qw(Exporter DynaLoader);
 @EXPORT =  qw();
index 07ec8ec..f312c3f 100644 (file)
@@ -1,7 +1,7 @@
 package Socket;
 
 our($VERSION, @ISA, @EXPORT, @EXPORT_OK, %EXPORT_TAGS);
-$VERSION = "1.76";
+$VERSION = "1.76_01";
 
 =head1 NAME
 
index 8ec8e1e..81034b7 100644 (file)
@@ -21,7 +21,7 @@ package Storable; @ISA = qw(Exporter DynaLoader);
 use AutoLoader;
 use vars qw($canonical $forgive_me $VERSION);
 
-$VERSION = '2.10';
+$VERSION = '2.10_01';
 *AUTOLOAD = \&AutoLoader::AUTOLOAD;            # Grrr...
 
 #
index 50f42f2..c958e84 100644 (file)
@@ -15,7 +15,7 @@ require DynaLoader;
                 d_usleep d_ualarm d_gettimeofday d_getitimer d_setitimer
                 d_nanosleep);
        
-$VERSION = '1.55';
+$VERSION = '1.55_01';
 $XS_VERSION = $VERSION;
 $VERSION = eval $VERSION;
 
index 33de5cc..a12a113 100644 (file)
@@ -13,7 +13,7 @@ package CGI::Cookie;
 # wish, but if you redistribute a modified version, please attach a note
 # listing the modifications you have made.
 
-$CGI::Cookie::VERSION='1.24';
+$CGI::Cookie::VERSION='1.24_01';
 
 use CGI::Util qw(rearrange unescape escape);
 use overload '""' => \&as_string,
index c723715..47954ac 100644 (file)
@@ -2,7 +2,7 @@ package ExtUtils::MakeMaker;
 
 BEGIN {require 5.005_03;}
 
-$VERSION = '6.21_01';
+$VERSION = '6.21_02';
 ($Revision) = q$Revision: 1.145 $ =~ /Revision:\s+(\S+)/;
 
 require Exporter;
index 3db1c7d..cf84542 100644 (file)
@@ -11,7 +11,7 @@
 # Version 1.01 $Revision: 1.18 $ $Date: 2001/06/24 17:16:47 $
 
 package Memoize;
-$VERSION = '1.01';
+$VERSION = '1.01_01';
 
 # Compile-time constants
 sub SCALAR () { 0 } 
index 83cc004..a89db69 100644 (file)
@@ -6,7 +6,7 @@ use File::Spec::Functions;
 
 our($capture_stderr, $VERSION, $AUTOLOAD);
 
-$VERSION = '0.5.1';
+$VERSION = '0.5.2';
 
 sub new { bless \my $foo, shift }
 sub DESTROY { }
index 911671c..15701b5 100644 (file)
@@ -3,7 +3,7 @@ package DB;
 use IO::Handle;
 
 # Debugger for Perl 5.00x; perl5db.pl patch level:
-$VERSION = 1.21;
+$VERSION = 1.21_01;
 $header  = "perl5db.pl version $VERSION";
 
 # It is crucial that there is no lexicals in scope of `eval ""' down below