summaryrefslogtreecommitdiff
path: root/dist/IO
diff options
context:
space:
mode:
authorFather Chrysostomos <sprout@cpan.org>2012-01-03 19:47:12 -0800
committerFather Chrysostomos <sprout@cpan.org>2012-01-03 19:48:15 -0800
commit9f7d1e40385f2b6a774be929b592fac0dea1458e (patch)
tree5ea15c184c95cf8d4328719a7a5e423f9e2580cd /dist/IO
parent1dfd34184395e3ce614d932eb8122349aa4a660c (diff)
downloadperl-9f7d1e40385f2b6a774be929b592fac0dea1458e.tar.gz
Correct bug-report email in IO docs
This was mentioned in ticket #75156.
Diffstat (limited to 'dist/IO')
-rw-r--r--dist/IO/lib/IO/Dir.pm4
-rw-r--r--dist/IO/lib/IO/Pipe.pm4
-rw-r--r--dist/IO/lib/IO/Poll.pm4
-rw-r--r--dist/IO/lib/IO/Select.pm4
-rw-r--r--dist/IO/lib/IO/Socket.pm5
-rw-r--r--dist/IO/lib/IO/Socket/INET.pm4
-rw-r--r--dist/IO/lib/IO/Socket/UNIX.pm4
7 files changed, 15 insertions, 14 deletions
diff --git a/dist/IO/lib/IO/Dir.pm b/dist/IO/lib/IO/Dir.pm
index da2df8e961..7326d7823d 100644
--- a/dist/IO/lib/IO/Dir.pm
+++ b/dist/IO/lib/IO/Dir.pm
@@ -19,7 +19,7 @@ use File::stat;
use File::Spec;
@ISA = qw(Tie::Hash Exporter);
-$VERSION = "1.09";
+$VERSION = "1.10";
$VERSION = eval $VERSION;
@EXPORT_OK = qw(DIR_UNLINK);
@@ -237,7 +237,7 @@ L<File::stat>
=head1 AUTHOR
Graham Barr. Currently maintained by the Perl Porters. Please report all
-bugs to <perl5-porters@perl.org>.
+bugs to <perlbug@perl.org>.
=head1 COPYRIGHT
diff --git a/dist/IO/lib/IO/Pipe.pm b/dist/IO/lib/IO/Pipe.pm
index 3b4313abb1..684069f4b7 100644
--- a/dist/IO/lib/IO/Pipe.pm
+++ b/dist/IO/lib/IO/Pipe.pm
@@ -14,7 +14,7 @@ our($VERSION);
use Carp;
use Symbol;
-$VERSION = "1.14";
+$VERSION = "1.15";
sub new {
my $type = shift;
@@ -246,7 +246,7 @@ L<IO::Handle>
=head1 AUTHOR
Graham Barr. Currently maintained by the Perl Porters. Please report all
-bugs to <perl5-porters@perl.org>.
+bugs to <perlbug@perl.org>.
=head1 COPYRIGHT
diff --git a/dist/IO/lib/IO/Poll.pm b/dist/IO/lib/IO/Poll.pm
index cf7ab26f75..47f1a13559 100644
--- a/dist/IO/lib/IO/Poll.pm
+++ b/dist/IO/lib/IO/Poll.pm
@@ -13,7 +13,7 @@ use Exporter ();
our(@ISA, @EXPORT_OK, @EXPORT, $VERSION);
@ISA = qw(Exporter);
-$VERSION = "0.08";
+$VERSION = "0.09";
@EXPORT = qw( POLLIN
POLLOUT
@@ -198,7 +198,7 @@ L<poll(2)>, L<IO::Handle>, L<IO::Select>
=head1 AUTHOR
Graham Barr. Currently maintained by the Perl Porters. Please report all
-bugs to <perl5-porters@perl.org>.
+bugs to <perlbug@perl.org>.
=head1 COPYRIGHT
diff --git a/dist/IO/lib/IO/Select.pm b/dist/IO/lib/IO/Select.pm
index 14b9797a95..756a299c34 100644
--- a/dist/IO/lib/IO/Select.pm
+++ b/dist/IO/lib/IO/Select.pm
@@ -11,7 +11,7 @@ use warnings::register;
use vars qw($VERSION @ISA);
require Exporter;
-$VERSION = "1.20";
+$VERSION = "1.21";
@ISA = qw(Exporter); # This is only so we can do version checking
@@ -375,7 +375,7 @@ listening for more connections on a listen socket
=head1 AUTHOR
Graham Barr. Currently maintained by the Perl Porters. Please report all
-bugs to <perl5-porters@perl.org>.
+bugs to <perlbug@perl.org>.
=head1 COPYRIGHT
diff --git a/dist/IO/lib/IO/Socket.pm b/dist/IO/lib/IO/Socket.pm
index ce493b55b2..529423b5fd 100644
--- a/dist/IO/lib/IO/Socket.pm
+++ b/dist/IO/lib/IO/Socket.pm
@@ -1,3 +1,4 @@
+
# IO::Socket.pm
#
# Copyright (c) 1997-8 Graham Barr <gbarr@pobox.com>. All rights reserved.
@@ -23,7 +24,7 @@ require IO::Socket::UNIX if ($^O ne 'epoc' && $^O ne 'symbian');
@ISA = qw(IO::Handle);
-$VERSION = "1.33";
+$VERSION = "1.34";
@EXPORT_OK = qw(sockatmark);
@@ -535,7 +536,7 @@ L<Socket>, L<IO::Handle>, L<IO::Socket::INET>, L<IO::Socket::UNIX>
=head1 AUTHOR
Graham Barr. atmark() by Lincoln Stein. Currently maintained by the
-Perl Porters. Please report all bugs to <perl5-porters@perl.org>.
+Perl Porters. Please report all bugs to <perlbug@perl.org>.
=head1 COPYRIGHT
diff --git a/dist/IO/lib/IO/Socket/INET.pm b/dist/IO/lib/IO/Socket/INET.pm
index cc9f170aac..5af70303d2 100644
--- a/dist/IO/lib/IO/Socket/INET.pm
+++ b/dist/IO/lib/IO/Socket/INET.pm
@@ -15,7 +15,7 @@ use Exporter;
use Errno;
@ISA = qw(IO::Socket);
-$VERSION = "1.32";
+$VERSION = "1.33";
my $EINVAL = exists(&Errno::EINVAL) ? Errno::EINVAL() : 1;
@@ -455,7 +455,7 @@ L<Socket>, L<IO::Socket>
=head1 AUTHOR
Graham Barr. Currently maintained by the Perl Porters. Please report all
-bugs to <perl5-porters@perl.org>.
+bugs to <perlbug@perl.org>.
=head1 COPYRIGHT
diff --git a/dist/IO/lib/IO/Socket/UNIX.pm b/dist/IO/lib/IO/Socket/UNIX.pm
index baa092ba1f..c6a10fea80 100644
--- a/dist/IO/lib/IO/Socket/UNIX.pm
+++ b/dist/IO/lib/IO/Socket/UNIX.pm
@@ -12,7 +12,7 @@ use IO::Socket;
use Carp;
@ISA = qw(IO::Socket);
-$VERSION = "1.23";
+$VERSION = "1.24";
$VERSION = eval $VERSION;
IO::Socket::UNIX->register_domain( AF_UNIX );
@@ -132,7 +132,7 @@ L<Socket>, L<IO::Socket>
=head1 AUTHOR
Graham Barr. Currently maintained by the Perl Porters. Please report all
-bugs to <perl5-porters@perl.org>.
+bugs to <perlbug@perl.org>.
=head1 COPYRIGHT