Skip to content

Commit

Permalink
Bump VERSIONs in all non-dual-lived modules that have changed
Browse files Browse the repository at this point in the history
since 5.8.8, ready for merging into maint-5.8 prior to 5.8.9.
(Many (all?) of these should really have been changed prior to
5.10.0, but better late than never.)

Also modify cmpVERSION.pl to skip uninstalled test modules whose
VERSIONs don't really matter.

p4raw-id: //depot/perl@34365
  • Loading branch information
Steve Hay authored and Steve Hay committed Sep 15, 2008
1 parent bc9c751 commit ae8d64f
Show file tree
Hide file tree
Showing 18 changed files with 19 additions and 17 deletions.
2 changes: 2 additions & 0 deletions Porting/cmpVERSION.pl
Original file line number Diff line number Diff line change
Expand Up @@ -29,10 +29,12 @@
'./lib/Carp/Heavy.pm',
'./lib/Exporter/Heavy.pm'
} = ();
my $skip_dirs = qr|^\./t/lib|;

my @wanted;
find(
sub { /\.pm$/ &&
$File::Find::dir !~ $skip_dirs &&
! exists $skip{$File::Find::name}
&&
do { my $file2 =
Expand Down
2 changes: 1 addition & 1 deletion ext/Opcode/ops.pm
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package ops;

our $VERSION = '1.01';
our $VERSION = '1.02';

use Opcode qw(opmask_add opset invert_opset);

Expand Down
2 changes: 1 addition & 1 deletion ext/XS/Typemap/Typemap.pm
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ use base qw/ DynaLoader Exporter /;

use vars qw/ $VERSION @EXPORT /;

$VERSION = '0.02';
$VERSION = '0.03';

@EXPORT = (qw/
T_SV
Expand Down
2 changes: 1 addition & 1 deletion lib/DBM_Filter/compress.pm
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ use strict;
use warnings;
use Carp;

our $VERSION = '0.01';
our $VERSION = '0.02';

BEGIN
{
Expand Down
2 changes: 1 addition & 1 deletion lib/DBM_Filter/encode.pm
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ use strict;
use warnings;
use Carp;

our $VERSION = '0.01';
our $VERSION = '0.02';

BEGIN
{
Expand Down
2 changes: 1 addition & 1 deletion lib/DBM_Filter/int32.pm
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package DBM_Filter::int32 ;
use strict;
use warnings;

our $VERSION = '0.01';
our $VERSION = '0.02';

# todo get Filter to figure endian.

Expand Down
2 changes: 1 addition & 1 deletion lib/DBM_Filter/null.pm
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package DBM_Filter::null ;
use strict;
use warnings;

our $VERSION = '0.01';
our $VERSION = '0.02';

sub Store
{
Expand Down
2 changes: 1 addition & 1 deletion lib/DBM_Filter/utf8.pm
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ use strict;
use warnings;
use Carp;

our $VERSION = '0.01';
our $VERSION = '0.02';

BEGIN
{
Expand Down
2 changes: 1 addition & 1 deletion lib/File/CheckTree.pm
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ use File::Spec;
use warnings;
use strict;

our $VERSION = '4.3';
our $VERSION = '4.4';
our @ISA = qw(Exporter);
our @EXPORT = qw(validate);

Expand Down
2 changes: 1 addition & 1 deletion lib/Getopt/Std.pm
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ and version_mess() with the switches string as an argument.

@ISA = qw(Exporter);
@EXPORT = qw(getopt getopts);
$VERSION = '1.05';
$VERSION = '1.06';
# uncomment the next line to disable 1.03-backward compatibility paranoia
# $STANDARD_HELP_VERSION = 1;

Expand Down
2 changes: 1 addition & 1 deletion lib/IPC/Open3.pm
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ require Exporter;
use Carp;
use Symbol qw(gensym qualify);

$VERSION = 1.02;
$VERSION = 1.03;
@ISA = qw(Exporter);
@EXPORT = qw(open3);

Expand Down
2 changes: 1 addition & 1 deletion lib/PerlIO.pm
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package PerlIO;

our $VERSION = '1.04';
our $VERSION = '1.05';

# Map layer name to package that defines it
our %alias;
Expand Down
2 changes: 1 addition & 1 deletion lib/Tie/Handle.pm
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package Tie::Handle;

use 5.006_001;
our $VERSION = '4.1';
our $VERSION = '4.2';

# Tie::StdHandle used to be inside Tie::Handle. For backwards compatibility
# loading Tie::Handle has to make Tie::StdHandle available.
Expand Down
2 changes: 1 addition & 1 deletion lib/Tie/Hash.pm
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package Tie::Hash;

our $VERSION = '1.02';
our $VERSION = '1.03';

=head1 NAME
Expand Down
2 changes: 1 addition & 1 deletion lib/Tie/Scalar.pm
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package Tie::Scalar;

our $VERSION = '1.00';
our $VERSION = '1.01';

=head1 NAME
Expand Down
2 changes: 1 addition & 1 deletion lib/blib.pm
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ use Cwd;
use File::Spec;

use vars qw($VERSION $Verbose);
$VERSION = '1.03';
$VERSION = '1.04';
$Verbose = 0;

sub import
Expand Down
2 changes: 1 addition & 1 deletion os2/OS2/Process/Process.pm
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ BEGIN {
#require AutoLoader;

our @ISA = qw(Exporter);
our $VERSION = "1.02";
our $VERSION = "1.03";
XSLoader::load('OS2::Process', $VERSION);
}

Expand Down
2 changes: 1 addition & 1 deletion vms/ext/Stdio/Stdio.pm
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ use Carp '&croak';
use DynaLoader ();
use Exporter ();

$VERSION = '2.3';
$VERSION = '2.4';
@ISA = qw( Exporter DynaLoader IO::File );
@EXPORT = qw( &O_APPEND &O_CREAT &O_EXCL &O_NDELAY &O_NOWAIT
&O_RDONLY &O_RDWR &O_TRUNC &O_WRONLY );
Expand Down

0 comments on commit ae8d64f

Please sign in to comment.