Change 20688 by [EMAIL PROTECTED] on 2003/08/14 04:51:30

        A swath of VERSION patches from Nick Clark.

Affected files ...

... //depot/perl/lib/AutoSplit.pm#35 edit
... //depot/perl/lib/CPAN/Nox.pm#17 edit
... //depot/perl/lib/Cwd.pm#68 edit
... //depot/perl/lib/English.pm#24 edit
... //depot/perl/lib/File/Basename.pm#34 edit
... //depot/perl/lib/File/Copy.pm#32 edit
... //depot/perl/lib/File/Path.pm#34 edit
... //depot/perl/lib/Hash/Util.pm#9 edit
... //depot/perl/lib/Net/hostent.pm#13 edit
... //depot/perl/lib/Net/servent.pm#11 edit
... //depot/perl/lib/Text/Abbrev.pm#10 edit
... //depot/perl/lib/Thread/Semaphore.pm#5 edit
... //depot/perl/lib/Tie/Array.pm#17 edit
... //depot/perl/lib/Tie/RefHash.pm#16 edit
... //depot/perl/lib/UNIVERSAL.pm#13 edit
... //depot/perl/lib/Unicode/UCD.pm#34 edit
... //depot/perl/lib/attributes.pm#14 edit
... //depot/perl/lib/base.pm#19 edit
... //depot/perl/lib/diagnostics.pm#29 edit
... //depot/perl/lib/fields.pm#21 edit
... //depot/perl/lib/filetest.pm#11 edit
... //depot/perl/lib/open.pm#45 edit
... //depot/perl/lib/overload.pm#33 edit
... //depot/perl/lib/utf8.pm#32 edit
... //depot/perl/lib/vmsish.pm#4 edit
... //depot/perl/os2/OS2/Process/Process.pm#13 edit
... //depot/perl/os2/OS2/REXX/DLL/DLL.pm#7 edit
... //depot/perl/t/TestInit.pm#8 edit
... //depot/perl/t/lib/MakeMaker/Test/Utils.pm#7 edit
... //depot/perl/t/lib/Math/BigInt/BareCalc.pm#5 edit
... //depot/perl/vms/ext/Filespec.pm#11 edit
... //depot/perl/warnings.pl#31 edit

Differences ...

==== //depot/perl/lib/AutoSplit.pm#35 (text) ====
Index: perl/lib/AutoSplit.pm
--- perl/lib/AutoSplit.pm#34~20583~     Sat Aug  9 05:43:50 2003
+++ perl/lib/AutoSplit.pm       Wed Aug 13 21:51:30 2003
@@ -11,7 +11,7 @@
 our($VERSION, @ISA, @EXPORT, @EXPORT_OK, $Verbose, $Keep, $Maxlen,
     $CheckForAutoloader, $CheckModTime);
 
-$VERSION = "1.0307";
+$VERSION = "1.04";
 @ISA = qw(Exporter);
 @EXPORT = qw(&autosplit &autosplit_lib_modules);
 @EXPORT_OK = qw($Verbose $Keep $Maxlen $CheckForAutoloader $CheckModTime);

==== //depot/perl/lib/CPAN/Nox.pm#17 (text) ====
Index: perl/lib/CPAN/Nox.pm
--- perl/lib/CPAN/Nox.pm#16~19573~      Tue May 20 11:43:37 2003
+++ perl/lib/CPAN/Nox.pm        Wed Aug 13 21:51:30 2003
@@ -9,7 +9,7 @@
 use base 'Exporter';
 use CPAN;
 
-$VERSION = "1.02";
+$VERSION = "1.03";
 $CPAN::META->has_inst('Digest::MD5','no');
 $CPAN::META->has_inst('LWP','no');
 $CPAN::META->has_inst('Compress::Zlib','no');

==== //depot/perl/lib/Cwd.pm#68 (text) ====
Index: perl/lib/Cwd.pm
--- perl/lib/Cwd.pm#67~20645~   Tue Aug 12 03:40:54 2003
+++ perl/lib/Cwd.pm     Wed Aug 13 21:51:30 2003
@@ -150,7 +150,7 @@
 
 use Carp;
 
-our $VERSION = '2.06';
+our $VERSION = '2.07';
 
 use base qw/ Exporter /;
 our @EXPORT = qw(cwd getcwd fastcwd fastgetcwd);

==== //depot/perl/lib/English.pm#24 (text) ====
Index: perl/lib/English.pm
--- perl/lib/English.pm#23~19769~       Fri Jun 13 12:17:50 2003
+++ perl/lib/English.pm Wed Aug 13 21:51:30 2003
@@ -1,6 +1,6 @@
 package English;
 
-our $VERSION = '1.00';
+our $VERSION = '1.01';
 
 require Exporter;
 @ISA = (Exporter);

==== //depot/perl/lib/File/Basename.pm#34 (text) ====
Index: perl/lib/File/Basename.pm
--- perl/lib/File/Basename.pm#33~18810~ Sun Mar  2 13:59:10 2003
+++ perl/lib/File/Basename.pm   Wed Aug 13 21:51:30 2003
@@ -142,7 +142,7 @@
 require Exporter;
 @ISA = qw(Exporter);
 @EXPORT = qw(fileparse fileparse_set_fstype basename dirname);
-$VERSION = "2.71";
+$VERSION = "2.72";
 
 
 #   fileparse_set_fstype() - specify OS-based rules used in future

==== //depot/perl/lib/File/Copy.pm#32 (text) ====
Index: perl/lib/File/Copy.pm
--- perl/lib/File/Copy.pm#31~19799~     Mon Jun 16 13:15:28 2003
+++ perl/lib/File/Copy.pm       Wed Aug 13 21:51:30 2003
@@ -24,7 +24,7 @@
 # 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.05';
+$VERSION = '2.06';
 
 require Exporter;
 @ISA = qw(Exporter);

==== //depot/perl/lib/File/Path.pm#34 (text) ====
Index: perl/lib/File/Path.pm
--- perl/lib/File/Path.pm#33~19444~     Wed May  7 13:25:45 2003
+++ perl/lib/File/Path.pm       Wed Aug 13 21:51:30 2003
@@ -119,7 +119,7 @@
 use strict;
 use warnings;
 
-our $VERSION = "1.05";
+our $VERSION = "1.06";
 our @ISA = qw( Exporter );
 our @EXPORT = qw( mkpath rmtree );
 

==== //depot/perl/lib/Hash/Util.pm#9 (text) ====
Index: perl/lib/Hash/Util.pm
--- perl/lib/Hash/Util.pm#8~19346~      Sat Apr 26 23:03:48 2003
+++ perl/lib/Hash/Util.pm       Wed Aug 13 21:51:30 2003
@@ -9,7 +9,7 @@
 our @EXPORT_OK  = qw(lock_keys unlock_keys lock_value unlock_value
                      lock_hash unlock_hash
                     );
-our $VERSION    = 0.04;
+our $VERSION    = 0.05;
 
 =head1 NAME
 

==== //depot/perl/lib/Net/hostent.pm#13 (text) ====
Index: perl/lib/Net/hostent.pm
--- perl/lib/Net/hostent.pm#12~17735~   Sat Aug 17 19:22:21 2002
+++ perl/lib/Net/hostent.pm     Wed Aug 13 21:51:30 2003
@@ -2,7 +2,7 @@
 use strict;
 
 use 5.006_001;
-our $VERSION = '1.00';
+our $VERSION = '1.01';
 our(@EXPORT, @EXPORT_OK, %EXPORT_TAGS);
 BEGIN { 
     use Exporter   ();

==== //depot/perl/lib/Net/servent.pm#11 (text) ====
Index: perl/lib/Net/servent.pm
--- perl/lib/Net/servent.pm#10~19063~   Wed Mar 26 11:33:09 2003
+++ perl/lib/Net/servent.pm     Wed Aug 13 21:51:30 2003
@@ -2,7 +2,7 @@
 use strict;
 
 use 5.006_001;
-our $VERSION = '1.00';
+our $VERSION = '1.01';
 our(@EXPORT, @EXPORT_OK, %EXPORT_TAGS);
 BEGIN {
     use Exporter   ();

==== //depot/perl/lib/Text/Abbrev.pm#10 (text) ====
Index: perl/lib/Text/Abbrev.pm
--- perl/lib/Text/Abbrev.pm#9~19114~    Tue Apr  1 07:56:27 2003
+++ perl/lib/Text/Abbrev.pm     Wed Aug 13 21:51:30 2003
@@ -2,7 +2,7 @@
 require 5.005;         # Probably works on earlier versions too.
 require Exporter;
 
-our $VERSION = '1.00';
+our $VERSION = '1.01';
 
 =head1 NAME
 

==== //depot/perl/lib/Thread/Semaphore.pm#5 (text) ====
Index: perl/lib/Thread/Semaphore.pm
--- perl/lib/Thread/Semaphore.pm#4~19853~       Wed Jun 25 12:35:02 2003
+++ perl/lib/Thread/Semaphore.pm        Wed Aug 13 21:51:30 2003
@@ -2,7 +2,7 @@
 
 use threads::shared;
 
-our $VERSION = '2.00';
+our $VERSION = '2.01';
 
 =head1 NAME
 

==== //depot/perl/lib/Tie/Array.pm#17 (text) ====
Index: perl/lib/Tie/Array.pm
--- perl/lib/Tie/Array.pm#16~17979~     Sun Oct  6 00:03:19 2002
+++ perl/lib/Tie/Array.pm       Wed Aug 13 21:51:30 2003
@@ -3,7 +3,7 @@
 use 5.006_001;
 use strict;
 use Carp;
-our $VERSION = '1.02';
+our $VERSION = '1.03';
 
 # Pod documentation after __END__ below.
 

==== //depot/perl/lib/Tie/RefHash.pm#16 (text) ====
Index: perl/lib/Tie/RefHash.pm
--- perl/lib/Tie/RefHash.pm#15~20368~   Wed Jul 30 22:28:17 2003
+++ perl/lib/Tie/RefHash.pm     Wed Aug 13 21:51:30 2003
@@ -1,6 +1,6 @@
 package Tie::RefHash;
 
-our $VERSION = 1.30;
+our $VERSION = 1.31;
 
 =head1 NAME
 

==== //depot/perl/lib/UNIVERSAL.pm#13 (text) ====
Index: perl/lib/UNIVERSAL.pm
--- perl/lib/UNIVERSAL.pm#12~19348~     Sat Apr 26 23:46:16 2003
+++ perl/lib/UNIVERSAL.pm       Wed Aug 13 21:51:30 2003
@@ -1,6 +1,6 @@
 package UNIVERSAL;
 
-our $VERSION = '1.00';
+our $VERSION = '1.01';
 
 # UNIVERSAL should not contain any extra subs/methods beyond those
 # that it exists to define. The use of Exporter below is a historical

==== //depot/perl/lib/Unicode/UCD.pm#34 (text) ====
Index: perl/lib/Unicode/UCD.pm
--- perl/lib/Unicode/UCD.pm#33~20609~   Sun Aug 10 21:28:29 2003
+++ perl/lib/Unicode/UCD.pm     Wed Aug 13 21:51:30 2003
@@ -3,7 +3,7 @@
 use strict;
 use warnings;
 
-our $VERSION = '0.2';
+our $VERSION = '0.21';
 
 use Storable qw(dclone);
 

==== //depot/perl/lib/attributes.pm#14 (text) ====
Index: perl/lib/attributes.pm
--- perl/lib/attributes.pm#13~19167~    Tue Apr  8 11:47:18 2003
+++ perl/lib/attributes.pm      Wed Aug 13 21:51:30 2003
@@ -1,6 +1,6 @@
 package attributes;
 
-our $VERSION = 0.05;
+our $VERSION = 0.06;
 
 @EXPORT_OK = qw(get reftype);
 @EXPORT = ();

==== //depot/perl/lib/base.pm#19 (text) ====
Index: perl/lib/base.pm
--- perl/lib/base.pm#18~19189~  Thu Apr 10 13:40:14 2003
+++ perl/lib/base.pm    Wed Aug 13 21:51:30 2003
@@ -45,7 +45,7 @@
 package base;
 
 use 5.006_001;
-our $VERSION = "1.03";
+our $VERSION = "1.04";
 
 sub import {
     my $class = shift;

==== //depot/perl/lib/diagnostics.pm#29 (xtext) ====
Index: perl/lib/diagnostics.pm
--- perl/lib/diagnostics.pm#28~19010~   Mon Mar 17 09:16:44 2003
+++ perl/lib/diagnostics.pm     Wed Aug 13 21:51:30 2003
@@ -171,7 +171,7 @@
 use 5.006;
 use Carp;
 
-our $VERSION = 1.1;
+our $VERSION = 1.11;
 our $DEBUG;
 our $VERBOSE;
 our $PRETTY;

==== //depot/perl/lib/fields.pm#21 (text) ====
Index: perl/lib/fields.pm
--- perl/lib/fields.pm#20~17725~        Fri Aug 16 17:51:19 2002
+++ perl/lib/fields.pm  Wed Aug 13 21:51:30 2003
@@ -100,7 +100,7 @@
 use warnings::register;
 our(%attr, $VERSION);
 
-$VERSION = "1.02";
+$VERSION = "1.04";
 
 use Hash::Util qw(lock_keys);
 

==== //depot/perl/lib/filetest.pm#11 (text) ====
Index: perl/lib/filetest.pm
--- perl/lib/filetest.pm#10~19393~      Fri May  2 22:34:21 2003
+++ perl/lib/filetest.pm        Wed Aug 13 21:51:30 2003
@@ -1,6 +1,6 @@
 package filetest;
 
-our $VERSION = '1.00';
+our $VERSION = '1.01';
 
 =head1 NAME
 

==== //depot/perl/lib/open.pm#45 (text) ====
Index: perl/lib/open.pm
--- perl/lib/open.pm#44~19600~  Fri May 23 09:55:09 2003
+++ perl/lib/open.pm    Wed Aug 13 21:51:30 2003
@@ -3,7 +3,7 @@
 use Carp;
 $open::hint_bits = 0x20000; # HINT_LOCALIZE_HH
 
-our $VERSION = '1.01';
+our $VERSION = '1.02';
 
 my $locale_encoding;
 

==== //depot/perl/lib/overload.pm#33 (text) ====
Index: perl/lib/overload.pm
--- perl/lib/overload.pm#32~19840~      Sun Jun 22 09:33:25 2003
+++ perl/lib/overload.pm        Wed Aug 13 21:51:30 2003
@@ -1,6 +1,6 @@
 package overload;
 
-our $VERSION = '1.00';
+our $VERSION = '1.01';
 
 $overload::hint_bits = 0x20000; # HINT_LOCALIZE_HH
 

==== //depot/perl/lib/utf8.pm#32 (text) ====
Index: perl/lib/utf8.pm
--- perl/lib/utf8.pm#31~19778~  Sat Jun 14 02:28:01 2003
+++ perl/lib/utf8.pm    Wed Aug 13 21:51:30 2003
@@ -2,7 +2,7 @@
 
 $utf8::hint_bits = 0x00800000;
 
-our $VERSION = '1.00';
+our $VERSION = '1.01';
 
 sub import {
     $^H |= $utf8::hint_bits;

==== //depot/perl/lib/vmsish.pm#4 (text) ====
Index: perl/lib/vmsish.pm
--- perl/lib/vmsish.pm#3~18217~ Fri Nov 29 04:11:28 2002
+++ perl/lib/vmsish.pm  Wed Aug 13 21:51:30 2003
@@ -1,6 +1,6 @@
 package vmsish;
 
-our $VERSION = '1.00';
+our $VERSION = '1.01';
 
 =head1 NAME
 

==== //depot/perl/os2/OS2/Process/Process.pm#13 (text) ====
Index: perl/os2/OS2/Process/Process.pm
--- perl/os2/OS2/Process/Process.pm#12~19789~   Sun Jun 15 10:08:02 2003
+++ perl/os2/OS2/Process/Process.pm     Wed Aug 13 21:51:30 2003
@@ -20,7 +20,7 @@
   #require AutoLoader;
 
   our @ISA = qw(Exporter);
-  our $VERSION = "1.0";
+  our $VERSION = "1.01";
   XSLoader::load('OS2::Process', $VERSION);
 }
 

==== //depot/perl/os2/OS2/REXX/DLL/DLL.pm#7 (text) ====
Index: perl/os2/OS2/REXX/DLL/DLL.pm
--- perl/os2/OS2/REXX/DLL/DLL.pm#6~19789~       Sun Jun 15 10:08:02 2003
+++ perl/os2/OS2/REXX/DLL/DLL.pm        Wed Aug 13 21:51:30 2003
@@ -1,6 +1,6 @@
 package OS2::DLL;
 
-our $VERSION = '1.00';
+our $VERSION = '1.01';
 
 use Carp;
 use XSLoader;

==== //depot/perl/t/TestInit.pm#8 (text) ====
Index: perl/t/TestInit.pm
--- perl/t/TestInit.pm#7~19964~ Thu Jul  3 11:56:26 2003
+++ perl/t/TestInit.pm  Wed Aug 13 21:51:30 2003
@@ -15,6 +15,8 @@
 
 package TestInit;
 
+$VERSION = 1.01;
+
 chdir 't' if -d 't';
 @INC = '../lib';
 

==== //depot/perl/t/lib/MakeMaker/Test/Utils.pm#7 (text) ====
Index: perl/t/lib/MakeMaker/Test/Utils.pm
--- perl/t/lib/MakeMaker/Test/Utils.pm#6~19162~ Mon Apr  7 11:23:29 2003
+++ perl/t/lib/MakeMaker/Test/Utils.pm  Wed Aug 13 21:51:30 2003
@@ -9,7 +9,7 @@
 require Exporter;
 @ISA = qw(Exporter);
 
-$VERSION = 0.02;
+$VERSION = 0.03;
 
 @EXPORT = qw(which_perl perl_lib makefile_name makefile_backup
              make make_run run make_macro calibrate_mtime

==== //depot/perl/t/lib/Math/BigInt/BareCalc.pm#5 (text) ====
Index: perl/t/lib/Math/BigInt/BareCalc.pm
--- perl/t/lib/Math/BigInt/BareCalc.pm#4~20000~ Fri Jul  4 13:58:05 2003
+++ perl/t/lib/Math/BigInt/BareCalc.pm  Wed Aug 13 21:51:30 2003
@@ -8,7 +8,7 @@
 use vars qw/@ISA $VERSION/;
 @ISA = qw(Exporter);
 
-$VERSION = '0.02';
+$VERSION = '0.03';
 
 # Package to to test Bigint's simulation of Calc
 

==== //depot/perl/vms/ext/Filespec.pm#11 (text) ====
Index: perl/vms/ext/Filespec.pm
--- perl/vms/ext/Filespec.pm#10~20197~  Thu Jul 24 01:59:45 2003
+++ perl/vms/ext/Filespec.pm    Wed Aug 13 21:51:30 2003
@@ -128,7 +128,7 @@
 package VMS::Filespec;
 require 5.002;
 
-our $VERSION = '1.1';
+our $VERSION = '1.11';
 
 # If you want to use this package on a non-VMS system,
 # uncomment the following line.

==== //depot/perl/warnings.pl#31 (text) ====
Index: perl/warnings.pl
--- perl/warnings.pl#30~18828~  Tue Mar  4 12:49:59 2003
+++ perl/warnings.pl    Wed Aug 13 21:51:30 2003
@@ -476,7 +476,7 @@
 
 package warnings;
 
-our $VERSION = '1.00';
+our $VERSION = '1.01';
 
 =head1 NAME
 
End of Patch.

Reply via email to