diff options
author | Nicholas Clark <nick@ccl4.org> | 2003-08-13 21:46:09 +0100 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2003-08-13 18:42:50 +0000 |
commit | 4522225b0b1dd6f5498ad893469cb9b2e20183b7 (patch) | |
tree | 665cc3c50379c20a3020cbfc0bc70f74b291b485 /ext/IO | |
parent | a0edd7f8266d86f8576becc8e4647dbf502c681d (diff) | |
download | perl-4522225b0b1dd6f5498ad893469cb9b2e20183b7.tar.gz |
Re: script wanted
Message-ID: <20030813204609.G20130@plum.flirble.org>
p4raw-id: //depot/perl@20686
Diffstat (limited to 'ext/IO')
-rw-r--r-- | ext/IO/IO.pm | 2 | ||||
-rw-r--r-- | ext/IO/lib/IO/File.pm | 2 | ||||
-rw-r--r-- | ext/IO/lib/IO/Handle.pm | 2 | ||||
-rw-r--r-- | ext/IO/lib/IO/Select.pm | 2 | ||||
-rw-r--r-- | ext/IO/lib/IO/Socket.pm | 2 | ||||
-rw-r--r-- | ext/IO/lib/IO/Socket/INET.pm | 2 |
6 files changed, 6 insertions, 6 deletions
diff --git a/ext/IO/IO.pm b/ext/IO/IO.pm index 70017cbd46..2a368e7f1f 100644 --- a/ext/IO/IO.pm +++ b/ext/IO/IO.pm @@ -7,7 +7,7 @@ use Carp; use strict; use warnings; -our $VERSION = "1.20"; +our $VERSION = "1.21"; XSLoader::load 'IO', $VERSION; sub import { diff --git a/ext/IO/lib/IO/File.pm b/ext/IO/lib/IO/File.pm index c90eb37a4c..538efcd0b6 100644 --- a/ext/IO/lib/IO/File.pm +++ b/ext/IO/lib/IO/File.pm @@ -121,7 +121,7 @@ require Exporter; @ISA = qw(IO::Handle IO::Seekable Exporter); -$VERSION = "1.09"; +$VERSION = "1.10"; @EXPORT = @IO::Seekable::EXPORT; diff --git a/ext/IO/lib/IO/Handle.pm b/ext/IO/lib/IO/Handle.pm index 29b83165a2..465ea6ce55 100644 --- a/ext/IO/lib/IO/Handle.pm +++ b/ext/IO/lib/IO/Handle.pm @@ -263,7 +263,7 @@ use IO (); # Load the XS module require Exporter; @ISA = qw(Exporter); -$VERSION = "1.21_00"; +$VERSION = "1.22_00"; $VERSION = eval $VERSION; @EXPORT_OK = qw( diff --git a/ext/IO/lib/IO/Select.pm b/ext/IO/lib/IO/Select.pm index 83c3d4a1b3..3e23cc087f 100644 --- a/ext/IO/lib/IO/Select.pm +++ b/ext/IO/lib/IO/Select.pm @@ -11,7 +11,7 @@ use warnings::register; use vars qw($VERSION @ISA); require Exporter; -$VERSION = "1.15"; +$VERSION = "1.16"; @ISA = qw(Exporter); # This is only so we can do version checking diff --git a/ext/IO/lib/IO/Socket.pm b/ext/IO/lib/IO/Socket.pm index f8c3cb346a..e706894a75 100644 --- a/ext/IO/lib/IO/Socket.pm +++ b/ext/IO/lib/IO/Socket.pm @@ -23,7 +23,7 @@ require IO::Socket::UNIX if ($^O ne 'epoc'); @ISA = qw(IO::Handle); -$VERSION = "1.27"; +$VERSION = "1.28"; @EXPORT_OK = qw(sockatmark); diff --git a/ext/IO/lib/IO/Socket/INET.pm b/ext/IO/lib/IO/Socket/INET.pm index 7d1c94dedd..ce3435fe06 100644 --- a/ext/IO/lib/IO/Socket/INET.pm +++ b/ext/IO/lib/IO/Socket/INET.pm @@ -15,7 +15,7 @@ use Exporter; use Errno; @ISA = qw(IO::Socket); -$VERSION = "1.26"; +$VERSION = "1.27"; my $EINVAL = exists(&Errno::EINVAL) ? Errno::EINVAL() : 1; |