This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Bump $VERSION in many modules that have changed.
authorNicholas Clark <nick@ccl4.org>
Thu, 12 Jan 2006 18:44:49 +0000 (18:44 +0000)
committerNicholas Clark <nick@ccl4.org>
Thu, 12 Jan 2006 18:44:49 +0000 (18:44 +0000)
p4raw-id: //depot/perl@26804

32 files changed:
ext/File/Glob/Glob.pm
ext/GDBM_File/GDBM_File.pm
ext/NDBM_File/NDBM_File.pm
ext/ODBM_File/ODBM_File.pm
ext/Opcode/Opcode.pm
ext/Opcode/ops.pm
ext/SDBM_File/SDBM_File.pm
ext/XS/Typemap/Typemap.pm
ext/attrs/attrs.pm
ext/re/re.pm
ext/threads/shared/shared.pm
lib/DB.pm
lib/Dumpvalue.pm
lib/English.pm
lib/File/Copy.pm
lib/FileCache.pm
lib/Pod/Functions.pm
lib/Pod/Html.pm
lib/Term/ReadLine.pm
lib/Tie/Hash.pm
lib/Unicode/UCD.pm
lib/User/grent.pm
lib/blib.pm
lib/diagnostics.pm
lib/overload.pm
lib/vmsish.pm
lib/warnings.pm
lib/warnings/register.pm
os2/OS2/PrfDB/PrfDB.pm
os2/OS2/Process/Process.pm
os2/OS2/REXX/REXX.pm
warnings.pl

index 28af8a8..133c650 100644 (file)
@@ -56,7 +56,7 @@ use XSLoader ();
     ) ],
 );
 
     ) ],
 );
 
-$VERSION = '1.04';
+$VERSION = '1.05';
 
 sub import {
     require Exporter;
 
 sub import {
     require Exporter;
index 63541bb..641bb01 100644 (file)
@@ -68,7 +68,7 @@ use XSLoader ();
        GDBM_WRITER
 );
 
        GDBM_WRITER
 );
 
-$VERSION = "1.07";
+$VERSION = "1.08";
 
 sub AUTOLOAD {
     my($constname);
 
 sub AUTOLOAD {
     my($constname);
index e74ca2e..9fa4d4b 100644 (file)
@@ -7,7 +7,7 @@ require Tie::Hash;
 use XSLoader ();
 
 our @ISA = qw(Tie::Hash);
 use XSLoader ();
 
 our @ISA = qw(Tie::Hash);
-our $VERSION = "1.05";
+our $VERSION = "1.06";
 
 XSLoader::load 'NDBM_File', $VERSION;
 
 
 XSLoader::load 'NDBM_File', $VERSION;
 
index d23d372..f76b444 100644 (file)
@@ -7,7 +7,7 @@ require Tie::Hash;
 use XSLoader ();
 
 our @ISA = qw(Tie::Hash);
 use XSLoader ();
 
 our @ISA = qw(Tie::Hash);
-our $VERSION = "1.05";
+our $VERSION = "1.06";
 
 XSLoader::load 'ODBM_File', $VERSION;
 
 
 XSLoader::load 'ODBM_File', $VERSION;
 
index 9a1c92b..225fda9 100644 (file)
@@ -6,7 +6,7 @@ use strict;
 
 our($VERSION, $XS_VERSION, @ISA, @EXPORT_OK);
 
 
 our($VERSION, $XS_VERSION, @ISA, @EXPORT_OK);
 
-$VERSION = "1.07";
+$VERSION = "1.08";
 $XS_VERSION = "1.03";
 
 use Carp;
 $XS_VERSION = "1.03";
 
 use Carp;
index 113445f..af38429 100644 (file)
@@ -1,6 +1,6 @@
 package ops;
 
 package ops;
 
-our $VERSION = '1.00';
+our $VERSION = '1.01';
 
 use Opcode qw(opmask_add opset invert_opset);
 
 
 use Opcode qw(opmask_add opset invert_opset);
 
index e83a814..07a05e1 100644 (file)
@@ -7,7 +7,7 @@ require Tie::Hash;
 use XSLoader ();
 
 our @ISA = qw(Tie::Hash);
 use XSLoader ();
 
 our @ISA = qw(Tie::Hash);
-our $VERSION = "1.04" ;
+our $VERSION = "1.05";
 
 XSLoader::load 'SDBM_File', $VERSION;
 
 
 XSLoader::load 'SDBM_File', $VERSION;
 
index ce5a65f..0c10f40 100644 (file)
@@ -36,7 +36,7 @@ use base qw/ DynaLoader Exporter /;
 
 use vars qw/ $VERSION @EXPORT /;
 
 
 use vars qw/ $VERSION @EXPORT /;
 
-$VERSION = '0.01';
+$VERSION = '0.02';
 
 @EXPORT = (qw/
           T_SV
 
 @EXPORT = (qw/
           T_SV
index 483d148..c483cd3 100644 (file)
@@ -1,7 +1,7 @@
 package attrs;
 use XSLoader ();
 
 package attrs;
 use XSLoader ();
 
-$VERSION = "1.01";
+$VERSION = "1.02";
 
 =head1 NAME
 
 
 =head1 NAME
 
index bd22948..85ed9b6 100644 (file)
@@ -1,6 +1,6 @@
 package re;
 
 package re;
 
-our $VERSION = 0.05;
+our $VERSION = 0.06;
 
 =head1 NAME
 
 
 =head1 NAME
 
index da3b961..baae735 100644 (file)
@@ -7,7 +7,7 @@ BEGIN {
     require Exporter;
     our @ISA = qw(Exporter);
     our @EXPORT = qw(share cond_wait cond_timedwait cond_broadcast cond_signal);
     require Exporter;
     our @ISA = qw(Exporter);
     our @EXPORT = qw(share cond_wait cond_timedwait cond_broadcast cond_signal);
-    our $VERSION = '0.93';
+    our $VERSION = '0.94';
 
     if ($threads::threads) {
        *cond_wait = \&cond_wait_enabled;
 
     if ($threads::threads) {
        *cond_wait = \&cond_wait_enabled;
index 4bc60c4..a12bcd6 100644 (file)
--- a/lib/DB.pm
+++ b/lib/DB.pm
@@ -41,7 +41,7 @@ BEGIN {
   $DB::subname = '';    # currently executing sub (fullly qualified name)
   $DB::lineno = '';     # current line number
 
   $DB::subname = '';    # currently executing sub (fullly qualified name)
   $DB::lineno = '';     # current line number
 
-  $DB::VERSION = $DB::VERSION = '1.0';
+  $DB::VERSION = $DB::VERSION = '1.01';
 
   # initialize private globals to avoid warnings
 
 
   # initialize private globals to avoid warnings
 
index 109e229..f182297 100644 (file)
@@ -1,7 +1,7 @@
 use 5.006_001;                 # for (defined ref) and $#$v and our
 package Dumpvalue;
 use strict;
 use 5.006_001;                 # for (defined ref) and $#$v and our
 package Dumpvalue;
 use strict;
-our $VERSION = '1.11';
+our $VERSION = '1.12';
 our(%address, $stab, @stab, %stab, %subs);
 
 # documentation nits, handle complex data structures better by chromatic
 our(%address, $stab, @stab, %stab, %subs);
 
 # documentation nits, handle complex data structures better by chromatic
index 073d079..eea7d2a 100644 (file)
@@ -1,6 +1,6 @@
 package English;
 
 package English;
 
-our $VERSION = '1.03';
+our $VERSION = '1.04';
 
 require Exporter;
 @ISA = (Exporter);
 
 require Exporter;
 @ISA = (Exporter);
index 57670e1..0593680 100644 (file)
@@ -23,7 +23,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.
 # 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.08_01';
+$VERSION = '2.09';
 
 require Exporter;
 @ISA = qw(Exporter);
 
 require Exporter;
 @ISA = qw(Exporter);
index 75a36dd..02bde7e 100644 (file)
@@ -1,6 +1,6 @@
 package FileCache;
 
 package FileCache;
 
-our $VERSION = '1.05';
+our $VERSION = '1.06';
 
 =head1 NAME
 
 
 =head1 NAME
 
index 3af2585..0e250cf 100644 (file)
@@ -67,7 +67,7 @@ L<perlfunc/"Perl Functions by Category"> section.
 
 =cut
 
 
 =cut
 
-our $VERSION = '1.02';
+our $VERSION = '1.03';
 
 require Exporter;
 
 
 require Exporter;
 
index 239d305..aba3c9f 100644 (file)
@@ -3,7 +3,7 @@ use strict;
 require Exporter;
 
 use vars qw($VERSION @ISA @EXPORT @EXPORT_OK);
 require Exporter;
 
 use vars qw($VERSION @ISA @EXPORT @EXPORT_OK);
-$VERSION = 1.0503;
+$VERSION = 1.0504;
 @ISA = qw(Exporter);
 @EXPORT = qw(pod2html htmlify);
 @EXPORT_OK = qw(anchorify);
 @ISA = qw(Exporter);
 @EXPORT = qw(pod2html htmlify);
 @EXPORT_OK = qw(anchorify);
index 1216f21..48eb991 100644 (file)
@@ -289,7 +289,7 @@ sub Features { \%features }
 
 package Term::ReadLine;                # So late to allow the above code be defined?
 
 
 package Term::ReadLine;                # So late to allow the above code be defined?
 
-our $VERSION = '1.01';
+our $VERSION = '1.02';
 
 my ($which) = exists $ENV{PERL_RL} ? split /\s+/, $ENV{PERL_RL} : undef;
 if ($which) {
 
 my ($which) = exists $ENV{PERL_RL} ? split /\s+/, $ENV{PERL_RL} : undef;
 if ($which) {
index bc5611d..a838915 100644 (file)
@@ -1,6 +1,6 @@
 package Tie::Hash;
 
 package Tie::Hash;
 
-our $VERSION = '1.01';
+our $VERSION = '1.02';
 
 =head1 NAME
 
 
 =head1 NAME
 
index 1496663..6a2b5e1 100644 (file)
@@ -3,7 +3,7 @@ package Unicode::UCD;
 use strict;
 use warnings;
 
 use strict;
 use warnings;
 
-our $VERSION = '0.23';
+our $VERSION = '0.24';
 
 use Storable qw(dclone);
 
 
 use Storable qw(dclone);
 
index 97a5495..ce6ee5e 100644 (file)
@@ -2,7 +2,7 @@ package User::grent;
 use strict;
 
 use 5.006_001;
 use strict;
 
 use 5.006_001;
-our $VERSION = '1.00';
+our $VERSION = '1.01';
 our(@EXPORT, @EXPORT_OK, %EXPORT_TAGS);
 BEGIN { 
     use Exporter   ();
 our(@EXPORT, @EXPORT_OK, %EXPORT_TAGS);
 BEGIN { 
     use Exporter   ();
index 6a1cf35..45ccd9b 100644 (file)
@@ -40,7 +40,7 @@ use Cwd;
 use File::Spec;
 
 use vars qw($VERSION $Verbose);
 use File::Spec;
 
 use vars qw($VERSION $Verbose);
-$VERSION = '1.02';
+$VERSION = '1.03';
 $Verbose = 0;
 
 sub import
 $Verbose = 0;
 
 sub import
index 30412bc..213638f 100755 (executable)
@@ -185,7 +185,7 @@ use 5.006;
 use Carp;
 $Carp::Internal{__PACKAGE__.""}++;
 
 use Carp;
 $Carp::Internal{__PACKAGE__.""}++;
 
-our $VERSION = 1.14;
+our $VERSION = 1.15;
 our $DEBUG;
 our $VERBOSE;
 our $PRETTY;
 our $DEBUG;
 our $VERBOSE;
 our $PRETTY;
index 50f324c..e11c30f 100644 (file)
@@ -1,6 +1,6 @@
 package overload;
 
 package overload;
 
-our $VERSION = '1.03';
+our $VERSION = '1.04';
 
 $overload::hint_bits = 0x20000; # HINT_LOCALIZE_HH
 
 
 $overload::hint_bits = 0x20000; # HINT_LOCALIZE_HH
 
index a11c364..30c8eb1 100644 (file)
@@ -1,6 +1,6 @@
 package vmsish;
 
 package vmsish;
 
-our $VERSION = '1.01';
+our $VERSION = '1.02';
 
 =head1 NAME
 
 
 =head1 NAME
 
index 7822f92..74287f0 100644 (file)
@@ -6,7 +6,7 @@
 
 package warnings;
 
 
 package warnings;
 
-our $VERSION = '1.04';
+our $VERSION = '1.05';
 
 =head1 NAME
 
 
 =head1 NAME
 
index d07e464..57c865d 100644 (file)
@@ -1,6 +1,6 @@
 package warnings::register;
 
 package warnings::register;
 
-our $VERSION = '1.00';
+our $VERSION = '1.01';
 
 =pod
 
 
 =pod
 
index aa2a906..a1bdc33 100644 (file)
@@ -14,7 +14,7 @@ our @ISA = qw(Exporter Tie::Hash);
 our @EXPORT = qw(
                 AnyIni UserIni SystemIni
                );
 our @EXPORT = qw(
                 AnyIni UserIni SystemIni
                );
-our $VERSION = '0.03';
+our $VERSION = '0.04';
 
 XSLoader::load 'OS2::PrfDB', $VERSION;
 
 
 XSLoader::load 'OS2::PrfDB', $VERSION;
 
index 69b362f..c299e88 100644 (file)
@@ -20,7 +20,7 @@ BEGIN {
   #require AutoLoader;
 
   our @ISA = qw(Exporter);
   #require AutoLoader;
 
   our @ISA = qw(Exporter);
-  our $VERSION = "1.01";
+  our $VERSION = "1.02";
   XSLoader::load('OS2::Process', $VERSION);
 }
 
   XSLoader::load('OS2::Process', $VERSION);
 }
 
index 88b624f..b99815a 100644 (file)
@@ -11,7 +11,7 @@ require OS2::DLL;
 # Other items we are prepared to export if requested
 @EXPORT_OK = qw(drop register);
 
 # Other items we are prepared to export if requested
 @EXPORT_OK = qw(drop register);
 
-$VERSION = '1.02';
+$VERSION = '1.03';
 
 # We cannot just put OS2::DLL in @ISA, since some scripts would use
 # function interface, not method interface...
 
 # We cannot just put OS2::DLL in @ISA, since some scripts would use
 # function interface, not method interface...
index 94cc34f..ebe8759 100644 (file)
@@ -1,6 +1,6 @@
 #!/usr/bin/perl
 
 #!/usr/bin/perl
 
-$VERSION = '1.02_01';
+$VERSION = '1.02_02';
 
 BEGIN {
   push @INC, './lib';
 
 BEGIN {
   push @INC, './lib';
@@ -432,7 +432,7 @@ __END__
 
 package warnings;
 
 
 package warnings;
 
-our $VERSION = '1.04';
+our $VERSION = '1.05';
 
 =head1 NAME
 
 
 =head1 NAME