diff options
-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 | ||||
-rw-r--r-- | lib/ExtUtils/Liblist/Kid.pm | 2 | ||||
-rw-r--r-- | lib/ExtUtils/MM_NW5.pm | 2 | ||||
-rw-r--r-- | lib/ExtUtils/MM_Win95.pm | 2 | ||||
-rw-r--r-- | lib/IPC/Open3.pm | 2 | ||||
-rw-r--r-- | lib/Unicode/UCD.pm | 2 | ||||
-rw-r--r-- | lib/base.pm | 2 | ||||
-rw-r--r-- | lib/utf8.pm | 2 |
14 files changed, 14 insertions, 14 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 diff --git a/lib/ExtUtils/Liblist/Kid.pm b/lib/ExtUtils/Liblist/Kid.pm index d67aa01963..cfdfa803ea 100644 --- a/lib/ExtUtils/Liblist/Kid.pm +++ b/lib/ExtUtils/Liblist/Kid.pm @@ -10,7 +10,7 @@ use 5.00503; use strict; use vars qw($VERSION); -$VERSION = 1.30; +$VERSION = 1.30_01; use Config; use Cwd 'cwd'; diff --git a/lib/ExtUtils/MM_NW5.pm b/lib/ExtUtils/MM_NW5.pm index 14b35d555d..f9741c9506 100644 --- a/lib/ExtUtils/MM_NW5.pm +++ b/lib/ExtUtils/MM_NW5.pm @@ -23,7 +23,7 @@ use Config; use File::Basename; use vars qw(@ISA $VERSION); -$VERSION = '2.07_01'; +$VERSION = '2.07_02'; require ExtUtils::MM_Win32; @ISA = qw(ExtUtils::MM_Win32); diff --git a/lib/ExtUtils/MM_Win95.pm b/lib/ExtUtils/MM_Win95.pm index fe3c170c6b..5d5ee1eba7 100644 --- a/lib/ExtUtils/MM_Win95.pm +++ b/lib/ExtUtils/MM_Win95.pm @@ -1,7 +1,7 @@ package ExtUtils::MM_Win95; use vars qw($VERSION @ISA); -$VERSION = 0.03; +$VERSION = 0.03_01; require ExtUtils::MM_Win32; @ISA = qw(ExtUtils::MM_Win32); diff --git a/lib/IPC/Open3.pm b/lib/IPC/Open3.pm index 8636c33b6d..da925182e7 100644 --- a/lib/IPC/Open3.pm +++ b/lib/IPC/Open3.pm @@ -9,7 +9,7 @@ require Exporter; use Carp; use Symbol qw(gensym qualify); -$VERSION = 1.0105; +$VERSION = 1.0106; @ISA = qw(Exporter); @EXPORT = qw(open3); diff --git a/lib/Unicode/UCD.pm b/lib/Unicode/UCD.pm index cce547bca4..dfdd2dcb51 100644 --- a/lib/Unicode/UCD.pm +++ b/lib/Unicode/UCD.pm @@ -3,7 +3,7 @@ package Unicode::UCD; use strict; use warnings; -our $VERSION = '0.21'; +our $VERSION = '0.22'; use Storable qw(dclone); diff --git a/lib/base.pm b/lib/base.pm index b735848f9b..cc0d3c6e6d 100644 --- a/lib/base.pm +++ b/lib/base.pm @@ -2,7 +2,7 @@ package base; use strict 'vars'; use vars qw($VERSION); -$VERSION = '2.04'; +$VERSION = '2.05'; # constant.pm is slow sub SUCCESS () { 1 } diff --git a/lib/utf8.pm b/lib/utf8.pm index ea99dd9f86..486a4faa88 100644 --- a/lib/utf8.pm +++ b/lib/utf8.pm @@ -2,7 +2,7 @@ package utf8; $utf8::hint_bits = 0x00800000; -our $VERSION = '1.02'; +our $VERSION = '1.03'; sub import { $^H |= $utf8::hint_bits; |