From: Nicholas Clark Date: Thu, 12 Jan 2006 18:44:49 +0000 (+0000) Subject: Bump $VERSION in many modules that have changed. X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=98225a64488c895097b3ce3f7ac9c94f464be86b;p=p5sagit%2Fp5-mst-13.2.git Bump $VERSION in many modules that have changed. p4raw-id: //depot/perl@26804 --- diff --git a/ext/File/Glob/Glob.pm b/ext/File/Glob/Glob.pm index 28af8a8..133c650 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 63541bb..641bb01 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 e74ca2e..9fa4d4b 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 d23d372..f76b444 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 9a1c92b..225fda9 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 113445f..af38429 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 e83a814..07a05e1 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 ce5a65f..0c10f40 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 483d148..c483cd3 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 bd22948..85ed9b6 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 da3b961..baae735 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 4bc60c4..a12bcd6 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 109e229..f182297 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 073d079..eea7d2a 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 57670e1..0593680 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 75a36dd..02bde7e 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 3af2585..0e250cf 100644 --- a/lib/Pod/Functions.pm +++ b/lib/Pod/Functions.pm @@ -67,7 +67,7 @@ L 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 239d305..aba3c9f 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 1216f21..48eb991 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 bc5611d..a838915 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 1496663..6a2b5e1 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 97a5495..ce6ee5e 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 6a1cf35..45ccd9b 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 30412bc..213638f 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 50f324c..e11c30f 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 a11c364..30c8eb1 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 7822f92..74287f0 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 d07e464..57c865d 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 aa2a906..a1bdc33 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 69b362f..c299e88 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 88b624f..b99815a 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 94cc34f..ebe8759 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