summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJarkko Hietaniemi <jhi@iki.fi>2001-06-29 03:38:56 +0000
committerJarkko Hietaniemi <jhi@iki.fi>2001-06-29 03:38:56 +0000
commitd6a466d771dbdc293e3f83b595b03cf44617cabb (patch)
tree070a190c3592fb1ef216b61ebf315f0d819b5951
parent199566928fd3000f78b2b73ac518cc24c1c23c98 (diff)
downloadperl-d6a466d771dbdc293e3f83b595b03cf44617cabb.tar.gz
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
-rw-r--r--ext/IO/lib/IO/Dir.pm2
-rw-r--r--ext/IO/lib/IO/Handle.pm2
-rw-r--r--ext/IO/lib/IO/Seekable.pm2
-rw-r--r--ext/IO/lib/IO/Select.pm2
-rw-r--r--ext/IO/lib/IO/Socket/INET.pm2
-rw-r--r--ext/IO/lib/IO/Socket/UNIX.pm2
-rw-r--r--ext/IPC/SysV/Msg.pm2
-rw-r--r--ext/IPC/SysV/Semaphore.pm2
-rw-r--r--ext/IPC/SysV/SysV.pm2
-rw-r--r--ext/Opcode/Opcode.pm2
-rw-r--r--ext/Opcode/Safe.pm2
-rw-r--r--ext/Thread/Thread.pm2
-rw-r--r--ext/attrs/attrs.pm2
-rw-r--r--ext/re/re.pm2
-rw-r--r--lib/AutoSplit.pm2
-rw-r--r--lib/Benchmark.pm2
-rw-r--r--lib/CGI/Pretty.pm2
-rw-r--r--lib/CPAN/Nox.pm2
-rw-r--r--lib/Exporter.pm2
-rw-r--r--lib/ExtUtils/Command.pm2
-rw-r--r--lib/ExtUtils/MakeMaker.pm2
-rw-r--r--lib/ExtUtils/Packlist.pm2
-rw-r--r--lib/File/Compare.pm2
-rw-r--r--lib/FileHandle.pm2
-rw-r--r--lib/Math/Complex.pm2
-rw-r--r--lib/Math/Trig.pm2
-rw-r--r--lib/Pod/Html.pm2
-rw-r--r--lib/Symbol.pm2
-rw-r--r--lib/Text/ParseWords.pm2
-rw-r--r--lib/Text/Soundex.pm2
-rw-r--r--lib/Tie/Array.pm2
-rw-r--r--lib/attributes.pm2
-rw-r--r--lib/autouse.pm2
-rw-r--r--lib/base.pm2
-rw-r--r--lib/constant.pm2
-rw-r--r--lib/fields.pm2
-rw-r--r--lib/strict.pm2
37 files changed, 37 insertions, 37 deletions
diff --git a/ext/IO/lib/IO/Dir.pm b/ext/IO/lib/IO/Dir.pm
index a2e3b5ef7f..68b00a3bd6 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 063341aeb4..0810422f25 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 95dd4d0c36..650f755847 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 1a3a26fe6a..bc5bf24c39 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 abe769389b..b36a65b951 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 53652423f9..b69aa8ced9 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 a0932389cb..3269b265c4 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 0505be222f..287d438e55 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 0cc74004da..a85ae5cdc3 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 6a5e30dd17..e979851897 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 a803b5f12d..5a5e220614 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 3deef813ab..6220a601fe 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 6c50beaa5d..483d14803e 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 32cee212cc..98e89cefd2 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 7feda7c2dd..25e29c3a98 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 b557be3cc7..4d3b3e2424 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 a26ab81d26..26671b18ca 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 2412df66ba..8812d25212 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 ad6cdef87e..9a361a73fa 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 aec4013d02..5b5c4103b7 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 82fe31285b..4e258ce760 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 309d72764d..4a6bfdfc75 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 9cf922b10c..b83ba62583 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 cd80d19024..fecf51a976 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 9812513656..4634d0f404 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 2a23590a2f..b10cda6f3c 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 c5e085b1bf..701ec76e1b 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 a95383a5d6..15c211c8dc 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 23eace9782..e370f6f45d 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 d5887640b8..842e0cc1d6 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 5b8423e943..8821783cfa 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 28f7eee68d..3a6b3d5e0f 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 8057d18f65..68646a4720 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 681e8f03e8..4a71c855db 100644
--- a/lib/base.pm
+++ b/lib/base.pm
@@ -45,7 +45,7 @@ L<fields>
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 ffa8791d07..21f4697258 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 37ff99d78a..ac3de1e4e2 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 8afb9a3792..737cb18b1a 100644
--- a/lib/strict.pm
+++ b/lib/strict.pm
@@ -90,7 +90,7 @@ See L<perlmodlib/Pragmatic Modules>.
=cut
-$strict::VERSION = "1.01";
+$strict::VERSION = "1.02";
my %bitmask = (
refs => 0x00000002,