about summary refs log tree commit
diff options
context:
space:
mode:
authorSteve Hay <steve.m.hay@googlemail.com>2014-12-09 13:41:46 +0000
committerSteve Hay <steve.m.hay@googlemail.com>2014-12-09 13:41:46 +0000
commit205a35884f210a3ca8afc01a9a195b173f329466 (patch)
treebf540a095af10035833f76234f6045e271df794f
parentbeeea5ae701fe425397f4452562747d25bc40528 (diff)
downloadperl-libnet-205a35884f210a3ca8afc01a9a195b173f329466.tar.gz
Bump version
-rw-r--r--Changes4
-rw-r--r--Makefile.PL2
-rw-r--r--lib/Net/Cmd.pm2
-rw-r--r--lib/Net/Config.pm2
-rw-r--r--lib/Net/Domain.pm2
-rw-r--r--lib/Net/FTP.pm2
-rw-r--r--lib/Net/FTP/A.pm2
-rw-r--r--lib/Net/FTP/E.pm2
-rw-r--r--lib/Net/FTP/I.pm2
-rw-r--r--lib/Net/FTP/L.pm2
-rw-r--r--lib/Net/FTP/dataconn.pm2
-rw-r--r--lib/Net/NNTP.pm2
-rw-r--r--lib/Net/Netrc.pm2
-rw-r--r--lib/Net/POP3.pm2
-rw-r--r--lib/Net/SMTP.pm2
-rw-r--r--lib/Net/Time.pm2
16 files changed, 19 insertions, 15 deletions
diff --git a/Changes b/Changes
index e11af68..b1c737b 100644
--- a/Changes
+++ b/Changes
@@ -1,5 +1,9 @@
 Revision history for Perl distribution libnet
 
+3.05 Development
+
+    - TODO
+
 3.04 2014-11-29
 
     - SNI is now only used for SSL connections if it is supported by
diff --git a/Makefile.PL b/Makefile.PL
index 59ff9e3..db7cfe2 100644
--- a/Makefile.PL
+++ b/Makefile.PL
@@ -64,7 +64,7 @@ MAIN: {
         ABSTRACT => 'Collection of network protocol modules',
         AUTHOR   => 'Graham Barr <gbarr@pobox.com>, Steve Hay <shay@cpan.org>',
         LICENSE  => 'perl_5',
-        VERSION  => '3.04',
+        VERSION  => '3.05',
 
         META_MERGE => {
             'meta-spec' => {
diff --git a/lib/Net/Cmd.pm b/lib/Net/Cmd.pm
index 03b27a2..2614e69 100644
--- a/lib/Net/Cmd.pm
+++ b/lib/Net/Cmd.pm
@@ -41,7 +41,7 @@ BEGIN {
   }
 }
 
-our $VERSION = "3.04";
+our $VERSION = "3.05";
 our @ISA     = qw(Exporter);
 our @EXPORT  = qw(CMD_INFO CMD_OK CMD_MORE CMD_REJECT CMD_ERROR CMD_PENDING);
 
diff --git a/lib/Net/Config.pm b/lib/Net/Config.pm
index e23a448..953a826 100644
--- a/lib/Net/Config.pm
+++ b/lib/Net/Config.pm
@@ -19,7 +19,7 @@ use Socket qw(inet_aton inet_ntoa);
 
 our @EXPORT  = qw(%NetConfig);
 our @ISA     = qw(Net::LocalCfg Exporter);
-our $VERSION = "3.04";
+our $VERSION = "3.05";
 
 our($CONFIGURE, $LIBNET_CFG);
 
diff --git a/lib/Net/Domain.pm b/lib/Net/Domain.pm
index 41d49c3..3b274a6 100644
--- a/lib/Net/Domain.pm
+++ b/lib/Net/Domain.pm
@@ -20,7 +20,7 @@ use Net::Config;
 
 our @ISA       = qw(Exporter);
 our @EXPORT_OK = qw(hostname hostdomain hostfqdn domainname);
-our $VERSION = "3.04";
+our $VERSION = "3.05";
 
 my ($host, $domain, $fqdn) = (undef, undef, undef);
 
diff --git a/lib/Net/FTP.pm b/lib/Net/FTP.pm
index ea0d7ae..c791fac 100644
--- a/lib/Net/FTP.pm
+++ b/lib/Net/FTP.pm
@@ -24,7 +24,7 @@ use Net::Config;
 use Socket;
 use Time::Local;
 
-our $VERSION = '3.04';
+our $VERSION = '3.05';
 
 our $IOCLASS;
 BEGIN {
diff --git a/lib/Net/FTP/A.pm b/lib/Net/FTP/A.pm
index dd51399..9f83e6c 100644
--- a/lib/Net/FTP/A.pm
+++ b/lib/Net/FTP/A.pm
@@ -13,7 +13,7 @@ use Carp;
 use Net::FTP::dataconn;
 
 our @ISA     = qw(Net::FTP::dataconn);
-our $VERSION = "3.04";
+our $VERSION = "3.05";
 
 our $buf;
 
diff --git a/lib/Net/FTP/E.pm b/lib/Net/FTP/E.pm
index 8db2f5b..1984a0e 100644
--- a/lib/Net/FTP/E.pm
+++ b/lib/Net/FTP/E.pm
@@ -8,6 +8,6 @@ use warnings;
 use Net::FTP::I;
 
 our @ISA = qw(Net::FTP::I);
-our $VERSION = "3.04";
+our $VERSION = "3.05";
 
 1;
diff --git a/lib/Net/FTP/I.pm b/lib/Net/FTP/I.pm
index 7dc5f5b..c388d8f 100644
--- a/lib/Net/FTP/I.pm
+++ b/lib/Net/FTP/I.pm
@@ -13,7 +13,7 @@ use Carp;
 use Net::FTP::dataconn;
 
 our @ISA     = qw(Net::FTP::dataconn);
-our $VERSION = "3.04";
+our $VERSION = "3.05";
 
 our $buf;
 
diff --git a/lib/Net/FTP/L.pm b/lib/Net/FTP/L.pm
index 2f6d4e7..dda51c4 100644
--- a/lib/Net/FTP/L.pm
+++ b/lib/Net/FTP/L.pm
@@ -8,6 +8,6 @@ use warnings;
 use Net::FTP::I;
 
 our @ISA = qw(Net::FTP::I);
-our $VERSION = "3.04";
+our $VERSION = "3.05";
 
 1;
diff --git a/lib/Net/FTP/dataconn.pm b/lib/Net/FTP/dataconn.pm
index a671d64..eaa769d 100644
--- a/lib/Net/FTP/dataconn.pm
+++ b/lib/Net/FTP/dataconn.pm
@@ -13,7 +13,7 @@ use Carp;
 use Errno;
 use Net::Cmd;
 
-our $VERSION = '3.04';
+our $VERSION = '3.05';
 
 $Net::FTP::IOCLASS or die "please load Net::FTP before Net::FTP::dataconn";
 our @ISA = $Net::FTP::IOCLASS;
diff --git a/lib/Net/NNTP.pm b/lib/Net/NNTP.pm
index ef838d2..3796798 100644
--- a/lib/Net/NNTP.pm
+++ b/lib/Net/NNTP.pm
@@ -20,7 +20,7 @@ use Net::Cmd;
 use Net::Config;
 use Time::Local;
 
-our $VERSION = "3.04";
+our $VERSION = "3.05";
 
 # Code for detecting if we can use SSL
 my $ssl_class = eval {
diff --git a/lib/Net/Netrc.pm b/lib/Net/Netrc.pm
index 1143cd7..9cf06b1 100644
--- a/lib/Net/Netrc.pm
+++ b/lib/Net/Netrc.pm
@@ -17,7 +17,7 @@ use warnings;
 use Carp;
 use FileHandle;
 
-our $VERSION = "3.04";
+our $VERSION = "3.05";
 
 our $TESTING;
 
diff --git a/lib/Net/POP3.pm b/lib/Net/POP3.pm
index 0c71e71..0c6c4b1 100644
--- a/lib/Net/POP3.pm
+++ b/lib/Net/POP3.pm
@@ -19,7 +19,7 @@ use IO::Socket;
 use Net::Cmd;
 use Net::Config;
 
-our $VERSION = "3.04";
+our $VERSION = "3.05";
 
 # Code for detecting if we can use SSL
 my $ssl_class = eval {
diff --git a/lib/Net/SMTP.pm b/lib/Net/SMTP.pm
index 3036b2a..57f51cc 100644
--- a/lib/Net/SMTP.pm
+++ b/lib/Net/SMTP.pm
@@ -20,7 +20,7 @@ use Net::Cmd;
 use Net::Config;
 use Socket;
 
-our $VERSION = "3.04";
+our $VERSION = "3.05";
 
 # Code for detecting if we can use SSL
 my $ssl_class = eval {
diff --git a/lib/Net/Time.pm b/lib/Net/Time.pm
index 49365cf..da25942 100644
--- a/lib/Net/Time.pm
+++ b/lib/Net/Time.pm
@@ -23,7 +23,7 @@ use Net::Config;
 our @ISA       = qw(Exporter);
 our @EXPORT_OK = qw(inet_time inet_daytime);
 
-our $VERSION = "3.04";
+our $VERSION = "3.05";
 
 our $TIMEOUT = 120;