about summary refs log tree commit
diff options
context:
space:
mode:
authorSteve Hay <steve.m.hay@googlemail.com>2014-06-04 08:22:35 +0100
committerSteve Hay <steve.m.hay@googlemail.com>2014-06-04 08:22:35 +0100
commit01218af804b04dce53fe240c9218ceea0fee58e4 (patch)
tree050746d05d97af083b2fb6fe12b6133ca703e363
parent6d1502af76b0ddb672e394932634043fe2f787e9 (diff)
downloadperl-libnet-01218af804b04dce53fe240c9218ceea0fee58e4.tar.gz
We require perl-5.8.1 or higher now
-rw-r--r--lib/Net/Cmd.pm2
-rw-r--r--lib/Net/FTP.pm4
-rw-r--r--lib/Net/SMTP.pm2
3 files changed, 4 insertions, 4 deletions
diff --git a/lib/Net/Cmd.pm b/lib/Net/Cmd.pm
index c2c046c..06191d7 100644
--- a/lib/Net/Cmd.pm
+++ b/lib/Net/Cmd.pm
@@ -6,7 +6,7 @@
 
 package Net::Cmd;
 
-require 5.001;
+use 5.008001;
 require Exporter;
 
 use strict;
diff --git a/lib/Net/FTP.pm b/lib/Net/FTP.pm
index 8107ef7..eb7494e 100644
--- a/lib/Net/FTP.pm
+++ b/lib/Net/FTP.pm
@@ -8,7 +8,7 @@
 
 package Net::FTP;
 
-require 5.001;
+use 5.008001;
 
 use strict;
 use vars qw(@ISA $VERSION);
@@ -21,7 +21,7 @@ use Net::Cmd;
 use Net::Config;
 use Fcntl qw(O_WRONLY O_RDONLY O_APPEND O_CREAT O_TRUNC);
 
-$VERSION = '2.79';
+$VERSION = '2.80';
 @ISA     = qw(Exporter Net::Cmd IO::Socket::INET);
 
 # Someday I will "use constant", when I am not bothered to much about
diff --git a/lib/Net/SMTP.pm b/lib/Net/SMTP.pm
index a889402..6c81b9a 100644
--- a/lib/Net/SMTP.pm
+++ b/lib/Net/SMTP.pm
@@ -6,7 +6,7 @@
 
 package Net::SMTP;
 
-require 5.001;
+use 5.008001;
 
 use strict;
 use vars qw($VERSION @ISA);