diff options
author | Nicholas Clark <nick@ccl4.org> | 2004-04-04 13:07:50 +0000 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2004-04-04 13:07:50 +0000 |
commit | 20a6717b3f0310570b661870c2455994a4ab8016 (patch) | |
tree | 2f0e9ebd35b9109c447b67bbc60c87f0c168ea4a /ext | |
parent | b6d5fef8cdb4285e43c5a333b488b349d2c28bd9 (diff) | |
download | perl-20a6717b3f0310570b661870c2455994a4ab8016.tar.gz |
Bump version numbers for modules that have changed since 5.8.3
p4raw-id: //depot/perl@22642
Diffstat (limited to 'ext')
-rw-r--r-- | ext/B/B/Assembler.pm | 2 | ||||
-rw-r--r-- | ext/B/B/Deparse.pm | 2 | ||||
-rw-r--r-- | ext/DynaLoader/DynaLoader_pm.PL | 2 | ||||
-rw-r--r-- | ext/IO/lib/IO/Handle.pm | 2 | ||||
-rw-r--r-- | ext/IO/lib/IO/Pipe.pm | 2 | ||||
-rw-r--r-- | ext/ODBM_File/ODBM_File.pm | 2 | ||||
-rwxr-xr-x | ext/threads/threads.pm | 2 |
7 files changed, 7 insertions, 7 deletions
diff --git a/ext/B/B/Assembler.pm b/ext/B/B/Assembler.pm index fce3753dce..6f6addf3b0 100644 --- a/ext/B/B/Assembler.pm +++ b/ext/B/B/Assembler.pm @@ -16,7 +16,7 @@ no warnings; # XXX @ISA = qw(Exporter); @EXPORT_OK = qw(assemble_fh newasm endasm assemble asm); -$VERSION = 0.06; +$VERSION = 0.07; use strict; my %opnumber; diff --git a/ext/B/B/Deparse.pm b/ext/B/B/Deparse.pm index e709d360c9..2db6130920 100644 --- a/ext/B/B/Deparse.pm +++ b/ext/B/B/Deparse.pm @@ -19,7 +19,7 @@ use B qw(class main_root main_start main_cv svref_2object opnumber perlstring CVf_METHOD CVf_LOCKED CVf_LVALUE CVf_ASSERTION PMf_KEEP PMf_GLOBAL PMf_CONTINUE PMf_EVAL PMf_ONCE PMf_SKIPWHITE PMf_MULTILINE PMf_SINGLELINE PMf_FOLD PMf_EXTENDED); -$VERSION = 0.65; +$VERSION = 0.66; use strict; use vars qw/$AUTOLOAD/; use warnings (); diff --git a/ext/DynaLoader/DynaLoader_pm.PL b/ext/DynaLoader/DynaLoader_pm.PL index 270cd7e02f..e4a1ba8618 100644 --- a/ext/DynaLoader/DynaLoader_pm.PL +++ b/ext/DynaLoader/DynaLoader_pm.PL @@ -29,7 +29,7 @@ package DynaLoader; use vars qw($VERSION *AUTOLOAD); -$VERSION = '1.04'; # avoid typo warning +$VERSION = '1.05'; # avoid typo warning require AutoLoader; *AUTOLOAD = \&AutoLoader::AUTOLOAD; diff --git a/ext/IO/lib/IO/Handle.pm b/ext/IO/lib/IO/Handle.pm index 0c65de6007..4bb8ddf5b5 100644 --- a/ext/IO/lib/IO/Handle.pm +++ b/ext/IO/lib/IO/Handle.pm @@ -262,7 +262,7 @@ use IO (); # Load the XS module require Exporter; @ISA = qw(Exporter); -$VERSION = "1.23"; +$VERSION = "1.24"; $VERSION = eval $VERSION; @EXPORT_OK = qw( diff --git a/ext/IO/lib/IO/Pipe.pm b/ext/IO/lib/IO/Pipe.pm index d368500b44..1d43b6e904 100644 --- a/ext/IO/lib/IO/Pipe.pm +++ b/ext/IO/lib/IO/Pipe.pm @@ -14,7 +14,7 @@ our($VERSION); use Carp; use Symbol; -$VERSION = "1.122"; +$VERSION = "1.123"; sub new { my $type = shift; diff --git a/ext/ODBM_File/ODBM_File.pm b/ext/ODBM_File/ODBM_File.pm index c14954cdaa..e9bdce5c69 100644 --- a/ext/ODBM_File/ODBM_File.pm +++ b/ext/ODBM_File/ODBM_File.pm @@ -7,7 +7,7 @@ require Tie::Hash; use XSLoader (); our @ISA = qw(Tie::Hash); -our $VERSION = "1.04"; +our $VERSION = "1.05"; XSLoader::load 'ODBM_File', $VERSION; diff --git a/ext/threads/threads.pm b/ext/threads/threads.pm index e96531fa48..68bcb437d1 100755 --- a/ext/threads/threads.pm +++ b/ext/threads/threads.pm @@ -50,7 +50,7 @@ our @EXPORT_OK = ( @{ $EXPORT_TAGS{'all'} } ); our @EXPORT = qw( async ); -our $VERSION = '1.02'; +our $VERSION = '1.03'; # || 0 to ensure compatibility with previous versions |