summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNicholas Clark <nick@ccl4.org>2006-01-12 18:44:49 +0000
committerNicholas Clark <nick@ccl4.org>2006-01-12 18:44:49 +0000
commit98225a64488c895097b3ce3f7ac9c94f464be86b (patch)
tree844445b173ff28c32d345d8a96447613f45b538a
parent54dc0f912bb497a6d6861fbfa3f067ec3cfdfe0c (diff)
downloadperl-98225a64488c895097b3ce3f7ac9c94f464be86b.tar.gz
Bump $VERSION in many modules that have changed.
p4raw-id: //depot/perl@26804
-rw-r--r--ext/File/Glob/Glob.pm2
-rw-r--r--ext/GDBM_File/GDBM_File.pm2
-rw-r--r--ext/NDBM_File/NDBM_File.pm2
-rw-r--r--ext/ODBM_File/ODBM_File.pm2
-rw-r--r--ext/Opcode/Opcode.pm2
-rw-r--r--ext/Opcode/ops.pm2
-rw-r--r--ext/SDBM_File/SDBM_File.pm2
-rw-r--r--ext/XS/Typemap/Typemap.pm2
-rw-r--r--ext/attrs/attrs.pm2
-rw-r--r--ext/re/re.pm2
-rw-r--r--ext/threads/shared/shared.pm2
-rw-r--r--lib/DB.pm2
-rw-r--r--lib/Dumpvalue.pm2
-rw-r--r--lib/English.pm2
-rw-r--r--lib/File/Copy.pm2
-rw-r--r--lib/FileCache.pm2
-rw-r--r--lib/Pod/Functions.pm2
-rw-r--r--lib/Pod/Html.pm2
-rw-r--r--lib/Term/ReadLine.pm2
-rw-r--r--lib/Tie/Hash.pm2
-rw-r--r--lib/Unicode/UCD.pm2
-rw-r--r--lib/User/grent.pm2
-rw-r--r--lib/blib.pm2
-rwxr-xr-xlib/diagnostics.pm2
-rw-r--r--lib/overload.pm2
-rw-r--r--lib/vmsish.pm2
-rw-r--r--lib/warnings.pm2
-rw-r--r--lib/warnings/register.pm2
-rw-r--r--os2/OS2/PrfDB/PrfDB.pm2
-rw-r--r--os2/OS2/Process/Process.pm2
-rw-r--r--os2/OS2/REXX/REXX.pm2
-rw-r--r--warnings.pl4
32 files changed, 33 insertions, 33 deletions
diff --git a/ext/File/Glob/Glob.pm b/ext/File/Glob/Glob.pm
index 28af8a8a4f..133c650529 100644
--- a/ext/File/Glob/Glob.pm
+++ b/ext/File/Glob/Glob.pm
@@ -56,7 +56,7 @@ use XSLoader ();
) ],
);
-$VERSION = '1.04';
+$VERSION = '1.05';
sub import {
require Exporter;
diff --git a/ext/GDBM_File/GDBM_File.pm b/ext/GDBM_File/GDBM_File.pm
index 63541bb04a..641bb01ec9 100644
--- a/ext/GDBM_File/GDBM_File.pm
+++ b/ext/GDBM_File/GDBM_File.pm
@@ -68,7 +68,7 @@ use XSLoader ();
GDBM_WRITER
);
-$VERSION = "1.07";
+$VERSION = "1.08";
sub AUTOLOAD {
my($constname);
diff --git a/ext/NDBM_File/NDBM_File.pm b/ext/NDBM_File/NDBM_File.pm
index e74ca2e292..9fa4d4b2cd 100644
--- a/ext/NDBM_File/NDBM_File.pm
+++ b/ext/NDBM_File/NDBM_File.pm
@@ -7,7 +7,7 @@ require Tie::Hash;
use XSLoader ();
our @ISA = qw(Tie::Hash);
-our $VERSION = "1.05";
+our $VERSION = "1.06";
XSLoader::load 'NDBM_File', $VERSION;
diff --git a/ext/ODBM_File/ODBM_File.pm b/ext/ODBM_File/ODBM_File.pm
index d23d3727ba..f76b444abb 100644
--- a/ext/ODBM_File/ODBM_File.pm
+++ b/ext/ODBM_File/ODBM_File.pm
@@ -7,7 +7,7 @@ require Tie::Hash;
use XSLoader ();
our @ISA = qw(Tie::Hash);
-our $VERSION = "1.05";
+our $VERSION = "1.06";
XSLoader::load 'ODBM_File', $VERSION;
diff --git a/ext/Opcode/Opcode.pm b/ext/Opcode/Opcode.pm
index 9a1c92b2b0..225fda9031 100644
--- a/ext/Opcode/Opcode.pm
+++ b/ext/Opcode/Opcode.pm
@@ -6,7 +6,7 @@ use strict;
our($VERSION, $XS_VERSION, @ISA, @EXPORT_OK);
-$VERSION = "1.07";
+$VERSION = "1.08";
$XS_VERSION = "1.03";
use Carp;
diff --git a/ext/Opcode/ops.pm b/ext/Opcode/ops.pm
index 113445f29c..af3842918f 100644
--- a/ext/Opcode/ops.pm
+++ b/ext/Opcode/ops.pm
@@ -1,6 +1,6 @@
package ops;
-our $VERSION = '1.00';
+our $VERSION = '1.01';
use Opcode qw(opmask_add opset invert_opset);
diff --git a/ext/SDBM_File/SDBM_File.pm b/ext/SDBM_File/SDBM_File.pm
index e83a814ded..07a05e1d49 100644
--- a/ext/SDBM_File/SDBM_File.pm
+++ b/ext/SDBM_File/SDBM_File.pm
@@ -7,7 +7,7 @@ require Tie::Hash;
use XSLoader ();
our @ISA = qw(Tie::Hash);
-our $VERSION = "1.04" ;
+our $VERSION = "1.05";
XSLoader::load 'SDBM_File', $VERSION;
diff --git a/ext/XS/Typemap/Typemap.pm b/ext/XS/Typemap/Typemap.pm
index ce5a65f0ee..0c10f40c15 100644
--- a/ext/XS/Typemap/Typemap.pm
+++ b/ext/XS/Typemap/Typemap.pm
@@ -36,7 +36,7 @@ use base qw/ DynaLoader Exporter /;
use vars qw/ $VERSION @EXPORT /;
-$VERSION = '0.01';
+$VERSION = '0.02';
@EXPORT = (qw/
T_SV
diff --git a/ext/attrs/attrs.pm b/ext/attrs/attrs.pm
index 483d14803e..c483cd3455 100644
--- a/ext/attrs/attrs.pm
+++ b/ext/attrs/attrs.pm
@@ -1,7 +1,7 @@
package attrs;
use XSLoader ();
-$VERSION = "1.01";
+$VERSION = "1.02";
=head1 NAME
diff --git a/ext/re/re.pm b/ext/re/re.pm
index bd22948ef4..85ed9b6c6b 100644
--- a/ext/re/re.pm
+++ b/ext/re/re.pm
@@ -1,6 +1,6 @@
package re;
-our $VERSION = 0.05;
+our $VERSION = 0.06;
=head1 NAME
diff --git a/ext/threads/shared/shared.pm b/ext/threads/shared/shared.pm
index da3b9617f7..baae73590f 100644
--- a/ext/threads/shared/shared.pm
+++ b/ext/threads/shared/shared.pm
@@ -7,7 +7,7 @@ BEGIN {
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;
diff --git a/lib/DB.pm b/lib/DB.pm
index 4bc60c4061..a12bcd600c 100644
--- 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::VERSION = $DB::VERSION = '1.0';
+ $DB::VERSION = $DB::VERSION = '1.01';
# initialize private globals to avoid warnings
diff --git a/lib/Dumpvalue.pm b/lib/Dumpvalue.pm
index 109e2295af..f1822971f4 100644
--- a/lib/Dumpvalue.pm
+++ b/lib/Dumpvalue.pm
@@ -1,7 +1,7 @@
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
diff --git a/lib/English.pm b/lib/English.pm
index 073d079882..eea7d2a653 100644
--- a/lib/English.pm
+++ b/lib/English.pm
@@ -1,6 +1,6 @@
package English;
-our $VERSION = '1.03';
+our $VERSION = '1.04';
require Exporter;
@ISA = (Exporter);
diff --git a/lib/File/Copy.pm b/lib/File/Copy.pm
index 57670e1818..05936809a1 100644
--- a/lib/File/Copy.pm
+++ b/lib/File/Copy.pm
@@ -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.
-$VERSION = '2.08_01';
+$VERSION = '2.09';
require Exporter;
@ISA = qw(Exporter);
diff --git a/lib/FileCache.pm b/lib/FileCache.pm
index 75a36dd66b..02bde7e68f 100644
--- a/lib/FileCache.pm
+++ b/lib/FileCache.pm
@@ -1,6 +1,6 @@
package FileCache;
-our $VERSION = '1.05';
+our $VERSION = '1.06';
=head1 NAME
diff --git a/lib/Pod/Functions.pm b/lib/Pod/Functions.pm
index 3af258593e..0e250cf0b5 100644
--- a/lib/Pod/Functions.pm
+++ b/lib/Pod/Functions.pm
@@ -67,7 +67,7 @@ L<perlfunc/"Perl Functions by Category"> section.
=cut
-our $VERSION = '1.02';
+our $VERSION = '1.03';
require Exporter;
diff --git a/lib/Pod/Html.pm b/lib/Pod/Html.pm
index 239d305c9c..aba3c9f608 100644
--- a/lib/Pod/Html.pm
+++ b/lib/Pod/Html.pm
@@ -3,7 +3,7 @@ use strict;
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);
diff --git a/lib/Term/ReadLine.pm b/lib/Term/ReadLine.pm
index 1216f21d7f..48eb9911a6 100644
--- a/lib/Term/ReadLine.pm
+++ b/lib/Term/ReadLine.pm
@@ -289,7 +289,7 @@ sub Features { \%features }
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) {
diff --git a/lib/Tie/Hash.pm b/lib/Tie/Hash.pm
index bc5611dc98..a838915482 100644
--- a/lib/Tie/Hash.pm
+++ b/lib/Tie/Hash.pm
@@ -1,6 +1,6 @@
package Tie::Hash;
-our $VERSION = '1.01';
+our $VERSION = '1.02';
=head1 NAME
diff --git a/lib/Unicode/UCD.pm b/lib/Unicode/UCD.pm
index 1496663c54..6a2b5e1384 100644
--- a/lib/Unicode/UCD.pm
+++ b/lib/Unicode/UCD.pm
@@ -3,7 +3,7 @@ package Unicode::UCD;
use strict;
use warnings;
-our $VERSION = '0.23';
+our $VERSION = '0.24';
use Storable qw(dclone);
diff --git a/lib/User/grent.pm b/lib/User/grent.pm
index 97a5495351..ce6ee5ea44 100644
--- a/lib/User/grent.pm
+++ b/lib/User/grent.pm
@@ -2,7 +2,7 @@ package User::grent;
use strict;
use 5.006_001;
-our $VERSION = '1.00';
+our $VERSION = '1.01';
our(@EXPORT, @EXPORT_OK, %EXPORT_TAGS);
BEGIN {
use Exporter ();
diff --git a/lib/blib.pm b/lib/blib.pm
index 6a1cf350a9..45ccd9b518 100644
--- a/lib/blib.pm
+++ b/lib/blib.pm
@@ -40,7 +40,7 @@ use Cwd;
use File::Spec;
use vars qw($VERSION $Verbose);
-$VERSION = '1.02';
+$VERSION = '1.03';
$Verbose = 0;
sub import
diff --git a/lib/diagnostics.pm b/lib/diagnostics.pm
index 30412bc973..213638f1d8 100755
--- a/lib/diagnostics.pm
+++ b/lib/diagnostics.pm
@@ -185,7 +185,7 @@ use 5.006;
use Carp;
$Carp::Internal{__PACKAGE__.""}++;
-our $VERSION = 1.14;
+our $VERSION = 1.15;
our $DEBUG;
our $VERBOSE;
our $PRETTY;
diff --git a/lib/overload.pm b/lib/overload.pm
index 50f324cf80..e11c30f5a2 100644
--- a/lib/overload.pm
+++ b/lib/overload.pm
@@ -1,6 +1,6 @@
package overload;
-our $VERSION = '1.03';
+our $VERSION = '1.04';
$overload::hint_bits = 0x20000; # HINT_LOCALIZE_HH
diff --git a/lib/vmsish.pm b/lib/vmsish.pm
index a11c364167..30c8eb1656 100644
--- a/lib/vmsish.pm
+++ b/lib/vmsish.pm
@@ -1,6 +1,6 @@
package vmsish;
-our $VERSION = '1.01';
+our $VERSION = '1.02';
=head1 NAME
diff --git a/lib/warnings.pm b/lib/warnings.pm
index 7822f92f08..74287f07c5 100644
--- a/lib/warnings.pm
+++ b/lib/warnings.pm
@@ -6,7 +6,7 @@
package warnings;
-our $VERSION = '1.04';
+our $VERSION = '1.05';
=head1 NAME
diff --git a/lib/warnings/register.pm b/lib/warnings/register.pm
index d07e464aeb..57c865df52 100644
--- a/lib/warnings/register.pm
+++ b/lib/warnings/register.pm
@@ -1,6 +1,6 @@
package warnings::register;
-our $VERSION = '1.00';
+our $VERSION = '1.01';
=pod
diff --git a/os2/OS2/PrfDB/PrfDB.pm b/os2/OS2/PrfDB/PrfDB.pm
index aa2a9069e8..a1bdc33a1c 100644
--- a/os2/OS2/PrfDB/PrfDB.pm
+++ b/os2/OS2/PrfDB/PrfDB.pm
@@ -14,7 +14,7 @@ our @ISA = qw(Exporter Tie::Hash);
our @EXPORT = qw(
AnyIni UserIni SystemIni
);
-our $VERSION = '0.03';
+our $VERSION = '0.04';
XSLoader::load 'OS2::PrfDB', $VERSION;
diff --git a/os2/OS2/Process/Process.pm b/os2/OS2/Process/Process.pm
index 69b362f72c..c299e88467 100644
--- a/os2/OS2/Process/Process.pm
+++ b/os2/OS2/Process/Process.pm
@@ -20,7 +20,7 @@ BEGIN {
#require AutoLoader;
our @ISA = qw(Exporter);
- our $VERSION = "1.01";
+ our $VERSION = "1.02";
XSLoader::load('OS2::Process', $VERSION);
}
diff --git a/os2/OS2/REXX/REXX.pm b/os2/OS2/REXX/REXX.pm
index 88b624f233..b99815a041 100644
--- a/os2/OS2/REXX/REXX.pm
+++ b/os2/OS2/REXX/REXX.pm
@@ -11,7 +11,7 @@ require OS2::DLL;
# 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...
diff --git a/warnings.pl b/warnings.pl
index 94cc34fbf6..ebe8759cb6 100644
--- a/warnings.pl
+++ b/warnings.pl
@@ -1,6 +1,6 @@
#!/usr/bin/perl
-$VERSION = '1.02_01';
+$VERSION = '1.02_02';
BEGIN {
push @INC, './lib';
@@ -432,7 +432,7 @@ __END__
package warnings;
-our $VERSION = '1.04';
+our $VERSION = '1.05';
=head1 NAME