summaryrefslogtreecommitdiff
path: root/ext/IO
diff options
context:
space:
mode:
Diffstat (limited to 'ext/IO')
-rw-r--r--ext/IO/IO.pm2
-rw-r--r--ext/IO/lib/IO/File.pm2
-rw-r--r--ext/IO/lib/IO/Handle.pm2
-rw-r--r--ext/IO/lib/IO/Select.pm2
-rw-r--r--ext/IO/lib/IO/Socket.pm2
-rw-r--r--ext/IO/lib/IO/Socket/INET.pm2
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;