From: Jarkko Hietaniemi Date: Fri, 29 Jun 2001 03:38:56 +0000 (+0000) Subject: Bump up the VERSIONs of modules that have changed since 5.6.0, X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=d6a466d771dbdc293e3f83b595b03cf44617cabb;p=p5sagit%2Fp5-mst-13.2.git Bump up the VERSIONs of modules that have changed since 5.6.0, the modules found using a script written by Larry Schatzer Jr. p4raw-id: //depot/perl@11016 --- diff --git a/ext/IO/lib/IO/Dir.pm b/ext/IO/lib/IO/Dir.pm index a2e3b5e..68b00a3 100644 --- a/ext/IO/lib/IO/Dir.pm +++ b/ext/IO/lib/IO/Dir.pm @@ -19,7 +19,7 @@ use File::stat; use File::Spec; @ISA = qw(Tie::Hash Exporter); -$VERSION = "1.03"; +$VERSION = "1.04"; @EXPORT_OK = qw(DIR_UNLINK); sub DIR_UNLINK () { 1 } diff --git a/ext/IO/lib/IO/Handle.pm b/ext/IO/lib/IO/Handle.pm index 063341a..0810422 100644 --- a/ext/IO/lib/IO/Handle.pm +++ b/ext/IO/lib/IO/Handle.pm @@ -258,7 +258,7 @@ use IO (); # Load the XS module require Exporter; @ISA = qw(Exporter); -$VERSION = "1.21"; +$VERSION = "1.22"; @EXPORT_OK = qw( autoflush diff --git a/ext/IO/lib/IO/Seekable.pm b/ext/IO/lib/IO/Seekable.pm index 95dd4d0..650f755 100644 --- a/ext/IO/lib/IO/Seekable.pm +++ b/ext/IO/lib/IO/Seekable.pm @@ -107,7 +107,7 @@ require Exporter; @EXPORT = qw(SEEK_SET SEEK_CUR SEEK_END); @ISA = qw(Exporter); -$VERSION = "1.08"; +$VERSION = "1.09"; sub seek { @_ == 3 or croak 'usage: $io->seek(POS, WHENCE)'; diff --git a/ext/IO/lib/IO/Select.pm b/ext/IO/lib/IO/Select.pm index 1a3a26f..bc5bf24 100644 --- a/ext/IO/lib/IO/Select.pm +++ b/ext/IO/lib/IO/Select.pm @@ -11,7 +11,7 @@ use warnings::register; use vars qw($VERSION @ISA); require Exporter; -$VERSION = "1.14"; +$VERSION = "1.15"; @ISA = qw(Exporter); # This is only so we can do version checking diff --git a/ext/IO/lib/IO/Socket/INET.pm b/ext/IO/lib/IO/Socket/INET.pm index abe7693..b36a65b 100644 --- a/ext/IO/lib/IO/Socket/INET.pm +++ b/ext/IO/lib/IO/Socket/INET.pm @@ -15,7 +15,7 @@ use Exporter; use Errno; @ISA = qw(IO::Socket); -$VERSION = "1.25"; +$VERSION = "1.26"; my $EINVAL = exists(&Errno::EINVAL) ? Errno::EINVAL() : 1; diff --git a/ext/IO/lib/IO/Socket/UNIX.pm b/ext/IO/lib/IO/Socket/UNIX.pm index 5365242..b69aa8c 100644 --- a/ext/IO/lib/IO/Socket/UNIX.pm +++ b/ext/IO/lib/IO/Socket/UNIX.pm @@ -13,7 +13,7 @@ use Socket; use Carp; @ISA = qw(IO::Socket); -$VERSION = "1.20"; +$VERSION = "1.21"; IO::Socket::UNIX->register_domain( AF_UNIX ); diff --git a/ext/IPC/SysV/Msg.pm b/ext/IPC/SysV/Msg.pm index a093238..3269b26 100644 --- a/ext/IPC/SysV/Msg.pm +++ b/ext/IPC/SysV/Msg.pm @@ -11,7 +11,7 @@ use strict; use vars qw($VERSION); use Carp; -$VERSION = "1.00"; +$VERSION = "1.01"; { package IPC::Msg::stat; diff --git a/ext/IPC/SysV/Semaphore.pm b/ext/IPC/SysV/Semaphore.pm index 0505be2..287d438 100644 --- a/ext/IPC/SysV/Semaphore.pm +++ b/ext/IPC/SysV/Semaphore.pm @@ -12,7 +12,7 @@ use strict; use vars qw($VERSION); use Carp; -$VERSION = "1.00"; +$VERSION = "1.01"; { package IPC::Semaphore::stat; diff --git a/ext/IPC/SysV/SysV.pm b/ext/IPC/SysV/SysV.pm index 0cc7400..a85ae5c 100644 --- a/ext/IPC/SysV/SysV.pm +++ b/ext/IPC/SysV/SysV.pm @@ -14,7 +14,7 @@ use Config; require Exporter; @ISA = qw(Exporter); -$VERSION = "1.03"; +$VERSION = "1.04"; @EXPORT_OK = qw( GETALL GETNCNT GETPID GETVAL GETZCNT diff --git a/ext/Opcode/Opcode.pm b/ext/Opcode/Opcode.pm index 6a5e30d..e979851 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.04"; +$VERSION = "1.05"; $XS_VERSION = "1.03"; use Carp; diff --git a/ext/Opcode/Safe.pm b/ext/Opcode/Safe.pm index a803b5f..5a5e220 100644 --- a/ext/Opcode/Safe.pm +++ b/ext/Opcode/Safe.pm @@ -3,7 +3,7 @@ package Safe; use 5.003_11; use strict; -our $VERSION = "2.06"; +our $VERSION = "2.07"; use Carp; diff --git a/ext/Thread/Thread.pm b/ext/Thread/Thread.pm index 3deef81..6220a60 100644 --- a/ext/Thread/Thread.pm +++ b/ext/Thread/Thread.pm @@ -3,7 +3,7 @@ require Exporter; use XSLoader (); our($VERSION, @ISA, @EXPORT); -$VERSION = "1.0"; +$VERSION = "1.01"; @ISA = qw(Exporter); @EXPORT_OK = qw(yield cond_signal cond_broadcast cond_wait async); diff --git a/ext/attrs/attrs.pm b/ext/attrs/attrs.pm index 6c50bea..483d148 100644 --- a/ext/attrs/attrs.pm +++ b/ext/attrs/attrs.pm @@ -1,7 +1,7 @@ package attrs; use XSLoader (); -$VERSION = "1.0"; +$VERSION = "1.01"; =head1 NAME diff --git a/ext/re/re.pm b/ext/re/re.pm index 32cee21..98e89ce 100644 --- a/ext/re/re.pm +++ b/ext/re/re.pm @@ -1,6 +1,6 @@ package re; -$VERSION = 0.02; +our $VERSION = 0.03; =head1 NAME diff --git a/lib/AutoSplit.pm b/lib/AutoSplit.pm index 7feda7c..25e29c3 100644 --- a/lib/AutoSplit.pm +++ b/lib/AutoSplit.pm @@ -11,7 +11,7 @@ use strict; our($VERSION, @ISA, @EXPORT, @EXPORT_OK, $Verbose, $Keep, $Maxlen, $CheckForAutoloader, $CheckModTime); -$VERSION = "1.0305"; +$VERSION = "1.0306"; @ISA = qw(Exporter); @EXPORT = qw(&autosplit &autosplit_lib_modules); @EXPORT_OK = qw($Verbose $Keep $Maxlen $CheckForAutoloader $CheckModTime); diff --git a/lib/Benchmark.pm b/lib/Benchmark.pm index b557be3..4d3b3e2 100644 --- a/lib/Benchmark.pm +++ b/lib/Benchmark.pm @@ -362,7 +362,7 @@ use Exporter; @EXPORT_OK=qw(timesum cmpthese countit clearcache clearallcache disablecache enablecache); -$VERSION = 1.00; +$VERSION = 1.01; &init; diff --git a/lib/CGI/Pretty.pm b/lib/CGI/Pretty.pm index a26ab81..26671b1 100644 --- a/lib/CGI/Pretty.pm +++ b/lib/CGI/Pretty.pm @@ -10,7 +10,7 @@ package CGI::Pretty; use strict; use CGI (); -$CGI::Pretty::VERSION = '1.05'; +$CGI::Pretty::VERSION = '1.06'; $CGI::DefaultClass = __PACKAGE__; $CGI::Pretty::AutoloadClass = 'CGI'; @CGI::Pretty::ISA = qw( CGI ); diff --git a/lib/CPAN/Nox.pm b/lib/CPAN/Nox.pm index 2412df6..8812d25 100644 --- a/lib/CPAN/Nox.pm +++ b/lib/CPAN/Nox.pm @@ -9,7 +9,7 @@ BEGIN{ use base 'Exporter'; use CPAN; -$VERSION = "1.00"; +$VERSION = "1.01"; $CPAN::META->has_inst('MD5','no'); $CPAN::META->has_inst('LWP','no'); $CPAN::META->has_inst('Compress::Zlib','no'); diff --git a/lib/Exporter.pm b/lib/Exporter.pm index ad6cdef..9a361a7 100644 --- a/lib/Exporter.pm +++ b/lib/Exporter.pm @@ -8,7 +8,7 @@ no strict 'refs'; our $Debug = 0; our $ExportLevel = 0; our $Verbose ||= 0; -our $VERSION = '5.562'; +our $VERSION = '5.563'; sub export_to_level { require Exporter::Heavy; diff --git a/lib/ExtUtils/Command.pm b/lib/ExtUtils/Command.pm index aec4013..5b5c410 100644 --- a/lib/ExtUtils/Command.pm +++ b/lib/ExtUtils/Command.pm @@ -12,7 +12,7 @@ require Exporter; our(@ISA, @EXPORT, $VERSION); @ISA = qw(Exporter); @EXPORT = qw(cp rm_f rm_rf mv cat eqtime mkpath touch test_f); -$VERSION = '1.01'; +$VERSION = '1.02'; =head1 NAME diff --git a/lib/ExtUtils/MakeMaker.pm b/lib/ExtUtils/MakeMaker.pm index 82fe312..4e258ce 100644 --- a/lib/ExtUtils/MakeMaker.pm +++ b/lib/ExtUtils/MakeMaker.pm @@ -2,7 +2,7 @@ BEGIN {require 5.002;} # MakeMaker 5.17 was the last MakeMaker that was compatib package ExtUtils::MakeMaker; -$VERSION = "5.45"; +$VERSION = "5.46"; $Version_OK = "5.17"; # Makefiles older than $Version_OK will die # (Will be checked from MakeMaker version 4.13 onwards) ($Revision = substr(q$Revision: 1.222 $, 10)) =~ s/\s+$//; diff --git a/lib/ExtUtils/Packlist.pm b/lib/ExtUtils/Packlist.pm index 309d727..4a6bfdf 100644 --- a/lib/ExtUtils/Packlist.pm +++ b/lib/ExtUtils/Packlist.pm @@ -3,7 +3,7 @@ package ExtUtils::Packlist; use 5.005_64; use strict; use Carp qw(); -our $VERSION = '0.03'; +our $VERSION = '0.04'; # Used for generating filehandle globs. IO::File might not be available! my $fhname = "FH1"; diff --git a/lib/File/Compare.pm b/lib/File/Compare.pm index 9cf922b..b83ba62 100644 --- a/lib/File/Compare.pm +++ b/lib/File/Compare.pm @@ -8,7 +8,7 @@ our($VERSION, @ISA, @EXPORT, @EXPORT_OK, $Too_Big); require Exporter; use Carp; -$VERSION = '1.1002'; +$VERSION = '1.1003'; @ISA = qw(Exporter); @EXPORT = qw(compare); @EXPORT_OK = qw(cmp compare_text); diff --git a/lib/FileHandle.pm b/lib/FileHandle.pm index cd80d19..fecf51a 100644 --- a/lib/FileHandle.pm +++ b/lib/FileHandle.pm @@ -4,7 +4,7 @@ use 5.005_64; use strict; our($VERSION, @ISA, @EXPORT, @EXPORT_OK); -$VERSION = "2.00"; +$VERSION = "2.01"; require IO::File; @ISA = qw(IO::File); diff --git a/lib/Math/Complex.pm b/lib/Math/Complex.pm index 9812513..4634d0f 100644 --- a/lib/Math/Complex.pm +++ b/lib/Math/Complex.pm @@ -9,7 +9,7 @@ package Math::Complex; our($VERSION, @ISA, @EXPORT, %EXPORT_TAGS, $Inf); -$VERSION = 1.31; +$VERSION = 1.32; BEGIN { unless ($^O eq 'unicosmk') { diff --git a/lib/Math/Trig.pm b/lib/Math/Trig.pm index 2a23590..b10cda6 100644 --- a/lib/Math/Trig.pm +++ b/lib/Math/Trig.pm @@ -16,7 +16,7 @@ our($VERSION, $PACKAGE, @ISA, @EXPORT, @EXPORT_OK, %EXPORT_TAGS); @ISA = qw(Exporter); -$VERSION = 1.00; +$VERSION = 1.01; my @angcnv = qw(rad2deg rad2grad deg2rad deg2grad diff --git a/lib/Pod/Html.pm b/lib/Pod/Html.pm index c5e085b..701ec76 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); -$VERSION = 1.03; +$VERSION = 1.04; @ISA = qw(Exporter); @EXPORT = qw(pod2html htmlify); diff --git a/lib/Symbol.pm b/lib/Symbol.pm index a95383a..15c211c 100644 --- a/lib/Symbol.pm +++ b/lib/Symbol.pm @@ -70,7 +70,7 @@ require Exporter; @EXPORT = qw(gensym ungensym qualify qualify_to_ref); @EXPORT_OK = qw(delete_package); -$VERSION = 1.02; +$VERSION = 1.03; my $genpkg = "Symbol::"; my $genseq = 0; diff --git a/lib/Text/ParseWords.pm b/lib/Text/ParseWords.pm index 23eace9..e370f6f 100644 --- a/lib/Text/ParseWords.pm +++ b/lib/Text/ParseWords.pm @@ -1,7 +1,7 @@ package Text::ParseWords; use vars qw($VERSION @ISA @EXPORT $PERL_SINGLE_QUOTE); -$VERSION = "3.2"; +$VERSION = "3.21"; require 5.000; diff --git a/lib/Text/Soundex.pm b/lib/Text/Soundex.pm index d588764..842e0cc 100644 --- a/lib/Text/Soundex.pm +++ b/lib/Text/Soundex.pm @@ -5,7 +5,7 @@ require Exporter; @ISA = qw(Exporter); @EXPORT = qw(&soundex $soundex_nocode); -$VERSION = '1.0'; +$VERSION = '1.01'; # $Id: soundex.pl,v 1.2 1994/03/24 00:30:27 mike Exp $ # diff --git a/lib/Tie/Array.pm b/lib/Tie/Array.pm index 5b8423e..8821783 100644 --- a/lib/Tie/Array.pm +++ b/lib/Tie/Array.pm @@ -3,7 +3,7 @@ package Tie::Array; use 5.005_64; use strict; use Carp; -our $VERSION = '1.01'; +our $VERSION = '1.02'; # Pod documentation after __END__ below. diff --git a/lib/attributes.pm b/lib/attributes.pm index 28f7eee..3a6b3d5 100644 --- a/lib/attributes.pm +++ b/lib/attributes.pm @@ -1,6 +1,6 @@ package attributes; -$VERSION = 0.03; +our $VERSION = 0.04; @EXPORT_OK = qw(get reftype); @EXPORT = (); diff --git a/lib/autouse.pm b/lib/autouse.pm index 8057d18..68646a4 100644 --- a/lib/autouse.pm +++ b/lib/autouse.pm @@ -3,7 +3,7 @@ package autouse; #use strict; # debugging only use 5.003_90; # ->can, for my $var -$autouse::VERSION = '1.02'; +$autouse::VERSION = '1.03'; $autouse::DEBUG ||= 0; diff --git a/lib/base.pm b/lib/base.pm index 681e8f0..4a71c85 100644 --- a/lib/base.pm +++ b/lib/base.pm @@ -45,7 +45,7 @@ L package base; use 5.005_64; -our $VERSION = "1.01"; +our $VERSION = "1.02"; sub import { my $class = shift; diff --git a/lib/constant.pm b/lib/constant.pm index ffa8791..21f4697 100644 --- a/lib/constant.pm +++ b/lib/constant.pm @@ -5,7 +5,7 @@ use 5.005_64; use warnings::register; our($VERSION, %declared); -$VERSION = '1.02'; +$VERSION = '1.03'; #======================================================================= diff --git a/lib/fields.pm b/lib/fields.pm index 37ff99d..ac3de1e 100644 --- a/lib/fields.pm +++ b/lib/fields.pm @@ -133,7 +133,7 @@ no strict 'refs'; use warnings::register; our(%attr, $VERSION); -$VERSION = "1.01"; +$VERSION = "1.02"; # some constants sub _PUBLIC () { 1 } diff --git a/lib/strict.pm b/lib/strict.pm index 8afb9a3..737cb18 100644 --- a/lib/strict.pm +++ b/lib/strict.pm @@ -90,7 +90,7 @@ See L. =cut -$strict::VERSION = "1.01"; +$strict::VERSION = "1.02"; my %bitmask = ( refs => 0x00000002,