Skip to content

Commit

Permalink
$VERSION++ for all the non-dual life modules outside ext/ that
Browse files Browse the repository at this point in the history
Porting/cmpVERSION.pl reports differ from the 5.10.0 release.

All the rest of the differences would seem to be dual-life. :-(

p4raw-id: //depot/perl@33623
  • Loading branch information
nwc10 committed Mar 31, 2008
1 parent 33768f1 commit d8528f0
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 5 deletions.
3 changes: 2 additions & 1 deletion Porting/Maintainers.pm
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,12 @@ use 5.008;
require "Maintainers.pl";
use vars qw(%Modules %Maintainers);

use vars qw(@ISA @EXPORT_OK);
use vars qw(@ISA @EXPORT_OK $VERSION);
@ISA = qw(Exporter);
@EXPORT_OK = qw(%Modules %Maintainers
get_module_files get_module_pat
show_results process_options);
$VERSION = 0.02;
require Exporter;

use File::Find;
Expand Down
2 changes: 1 addition & 1 deletion lib/ExtUtils/Embed.pm
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ use vars qw(@ISA @EXPORT $VERSION
use strict;

# This is not a dual-life module, so no need for development version numbers
$VERSION = '1.27';
$VERSION = '1.28';

@ISA = qw(Exporter);
@EXPORT = qw(&xsinit &ldopts
Expand Down
2 changes: 1 addition & 1 deletion lib/File/Basename.pm
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ our(@ISA, @EXPORT, $VERSION, $Fileparse_fstype, $Fileparse_igncase);
require Exporter;
@ISA = qw(Exporter);
@EXPORT = qw(fileparse fileparse_set_fstype basename dirname);
$VERSION = "2.76";
$VERSION = "2.77";

fileparse_set_fstype($^O);

Expand Down
2 changes: 1 addition & 1 deletion lib/File/Find.pm
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ use 5.006;
use strict;
use warnings;
use warnings::register;
our $VERSION = '1.12';
our $VERSION = '1.13';
require Exporter;
require Cwd;

Expand Down
2 changes: 1 addition & 1 deletion os2/OS2/REXX/REXX.pm
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ require OS2::DLL;
# Other items we are prepared to export if requested
@EXPORT_OK = qw(drop register);

$VERSION = '1.03';
$VERSION = '1.04';

# We cannot just put OS2::DLL in @ISA, since some scripts would use
# function interface, not method interface...
Expand Down

0 comments on commit d8528f0

Please sign in to comment.