diff options
author | Nicholas Clark <nick@ccl4.org> | 2008-03-31 23:08:45 +0000 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2008-03-31 23:08:45 +0000 |
commit | d8528f07d4f9e687f7398656349cf605d0c2fb93 (patch) | |
tree | 6d53ae0b768e75f4802744be117f5f19a3865e09 | |
parent | 33768f1313b327865518f09b2c67d4134cf183fc (diff) | |
download | perl-d8528f07d4f9e687f7398656349cf605d0c2fb93.tar.gz |
$VERSION++ for all the non-dual life modules outside ext/ that
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
-rw-r--r-- | Porting/Maintainers.pm | 3 | ||||
-rw-r--r-- | lib/ExtUtils/Embed.pm | 2 | ||||
-rw-r--r-- | lib/File/Basename.pm | 2 | ||||
-rw-r--r-- | lib/File/Find.pm | 2 | ||||
-rw-r--r-- | os2/OS2/REXX/REXX.pm | 2 |
5 files changed, 6 insertions, 5 deletions
diff --git a/Porting/Maintainers.pm b/Porting/Maintainers.pm index 4f7aa44e94..0a2f4c64f3 100644 --- a/Porting/Maintainers.pm +++ b/Porting/Maintainers.pm @@ -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; diff --git a/lib/ExtUtils/Embed.pm b/lib/ExtUtils/Embed.pm index 619b134220..24ae9092f5 100644 --- a/lib/ExtUtils/Embed.pm +++ b/lib/ExtUtils/Embed.pm @@ -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 diff --git a/lib/File/Basename.pm b/lib/File/Basename.pm index 98235bb326..b3fe0ac6e5 100644 --- a/lib/File/Basename.pm +++ b/lib/File/Basename.pm @@ -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); diff --git a/lib/File/Find.pm b/lib/File/Find.pm index 0128e211bb..f316962d62 100644 --- a/lib/File/Find.pm +++ b/lib/File/Find.pm @@ -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; diff --git a/os2/OS2/REXX/REXX.pm b/os2/OS2/REXX/REXX.pm index b99815a041..ca9fee69ce 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.03'; +$VERSION = '1.04'; # We cannot just put OS2::DLL in @ISA, since some scripts would use # function interface, not method interface... |