diff options
author | Nicholas Clark <nick@ccl4.org> | 2005-05-05 14:54:20 +0000 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2005-05-05 14:54:20 +0000 |
commit | 6e0c49021edba9e9721445f9290f9128c314b9de (patch) | |
tree | 60580a445641c84599af176d151aff591017458c /ext/IO | |
parent | 5143c659fadb184e0a7d17e727769f92c91d37b7 (diff) | |
download | perl-6e0c49021edba9e9721445f9290f9128c314b9de.tar.gz |
Bump version numbers
p4raw-id: //depot/perl@24398
Diffstat (limited to 'ext/IO')
-rw-r--r-- | ext/IO/lib/IO/File.pm | 2 | ||||
-rw-r--r-- | ext/IO/lib/IO/Socket/INET.pm | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/ext/IO/lib/IO/File.pm b/ext/IO/lib/IO/File.pm index 8c778f70b3..2f0ceff919 100644 --- a/ext/IO/lib/IO/File.pm +++ b/ext/IO/lib/IO/File.pm @@ -137,7 +137,7 @@ require Exporter; @ISA = qw(IO::Handle IO::Seekable Exporter); -$VERSION = "1.10"; +$VERSION = "1.11"; @EXPORT = @IO::Seekable::EXPORT; diff --git a/ext/IO/lib/IO/Socket/INET.pm b/ext/IO/lib/IO/Socket/INET.pm index 6e4c32c78f..01e24239b0 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.27"; +$VERSION = "1.28"; my $EINVAL = exists(&Errno::EINVAL) ? Errno::EINVAL() : 1; |