diff options
author | Jarkko Hietaniemi <jhi@iki.fi> | 2003-08-13 18:53:15 +0000 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2003-08-13 18:53:15 +0000 |
commit | e9d8cdc0682791dad6e1ddeac96716205beff833 (patch) | |
tree | ef7f519a3cb47fd0be9bd5d1d379cfd939b18ed6 /ext/IO | |
parent | 4522225b0b1dd6f5498ad893469cb9b2e20183b7 (diff) | |
download | perl-e9d8cdc0682791dad6e1ddeac96716205beff833.tar.gz |
Alpha version numbers noticed by Schwern.
(These hacks are no more needed since the PAUSE indexer no
more indexes the insides of Perl distributions, says Andreas.)
p4raw-id: //depot/perl@20687
Diffstat (limited to 'ext/IO')
-rw-r--r-- | ext/IO/lib/IO/Dir.pm | 2 | ||||
-rw-r--r-- | ext/IO/lib/IO/Handle.pm | 3 | ||||
-rw-r--r-- | ext/IO/lib/IO/Seekable.pm | 2 | ||||
-rw-r--r-- | ext/IO/lib/IO/Socket/UNIX.pm | 2 |
4 files changed, 4 insertions, 5 deletions
diff --git a/ext/IO/lib/IO/Dir.pm b/ext/IO/lib/IO/Dir.pm index ccae4f0076..de736ccd6a 100644 --- a/ext/IO/lib/IO/Dir.pm +++ b/ext/IO/lib/IO/Dir.pm @@ -19,7 +19,7 @@ use File::stat; use File::Spec; @ISA = qw(Tie::Hash Exporter); -$VERSION = "1.03_00"; +$VERSION = "1.04"; $VERSION = eval $VERSION; @EXPORT_OK = qw(DIR_UNLINK); diff --git a/ext/IO/lib/IO/Handle.pm b/ext/IO/lib/IO/Handle.pm index 465ea6ce55..50d391f820 100644 --- a/ext/IO/lib/IO/Handle.pm +++ b/ext/IO/lib/IO/Handle.pm @@ -1,4 +1,3 @@ - package IO::Handle; =head1 NAME @@ -263,7 +262,7 @@ use IO (); # Load the XS module require Exporter; @ISA = qw(Exporter); -$VERSION = "1.22_00"; +$VERSION = "1.23"; $VERSION = eval $VERSION; @EXPORT_OK = qw( diff --git a/ext/IO/lib/IO/Seekable.pm b/ext/IO/lib/IO/Seekable.pm index 2ddee4d53c..240b288e83 100644 --- a/ext/IO/lib/IO/Seekable.pm +++ b/ext/IO/lib/IO/Seekable.pm @@ -107,7 +107,7 @@ require Exporter; @EXPORT = qw(SEEK_SET SEEK_CUR SEEK_END); @ISA = qw(Exporter); -$VERSION = "1.08_00"; +$VERSION = "1.09"; $VERSION = eval $VERSION; sub seek { diff --git a/ext/IO/lib/IO/Socket/UNIX.pm b/ext/IO/lib/IO/Socket/UNIX.pm index bbc2a448c7..6d0e95a78d 100644 --- a/ext/IO/lib/IO/Socket/UNIX.pm +++ b/ext/IO/lib/IO/Socket/UNIX.pm @@ -13,7 +13,7 @@ use Socket; use Carp; @ISA = qw(IO::Socket); -$VERSION = "1.20_00"; +$VERSION = "1.21"; $VERSION = eval $VERSION; IO::Socket::UNIX->register_domain( AF_UNIX ); |