about summary refs log tree commit
diff options
context:
space:
mode:
authorGraham Barr <gbarr@pobox.com>2010-05-31 09:43:46 -0500
committerGraham Barr <gbarr@pobox.com>2010-05-31 10:15:05 -0500
commitd3e57a64993d6be657afba2899c47eda183c9f0d (patch)
treef8fa8f12aaf8ff070b169947526ae5ff6d6a1a77
parent90a4e718ca907b3510536b9e4ea7a0b22299b0e2 (diff)
downloadperl-libnet-1.22_01.tar.gz
Release 1.22_01 v1.22_01
-rw-r--r--Changes22
-rw-r--r--Makefile.PL12
2 files changed, 33 insertions, 1 deletions
diff --git a/Changes b/Changes
index ff26b1d..3b44b82 100644
--- a/Changes
+++ b/Changes
@@ -1,3 +1,25 @@
+libnet 1.22_01 -- Mon May 31 09:40:25 CDT 2010
+
+  * Do not create/pass a remote name if one is not given to put_unique
+  * Add ->passive method to switch between PORT/PASV connections
+  * Accept - in command parsed from SMTP HELO response
+  * Allow group to set to a group named "0"
+  * Set $@ when ->new returns undef
+  * Add support for LocalAddr to be passed to ->new
+  * Document that timeout is in seconds
+  * Fix leading . encoding in datasend
+  * Make ->supported check ->feature
+  * Allow words other than FILE to prefix the unique name returned in info message from stou
+  * Send ALLO command just before the store command
+  * Avoid warnings when server do not prefix messages with codes
+  * Use uppercase characters for xtext encoding
+  * Catch timeout condition while doing an abort
+  * Ensure REST is sent directly before command being restarted
+  * [rt.cpan.org #49920] Fix URL [Leon Brocard]
+  * Avoid long hang on Mac OS X when hostname is *.local by not calling gethostbyname [Father Chrysostomos]
+  * Avoid infinite recursion in rmdir
+  * Allow finding _netrc on machines that do not support .netrc [Ben Bimber]
+
 libnet 1.22  -- Sun Aug 26 07:13:18 CDT 2007
 
 Bug Fixes
diff --git a/Makefile.PL b/Makefile.PL
index a329167..dd60ed0 100644
--- a/Makefile.PL
+++ b/Makefile.PL
@@ -4,7 +4,7 @@
 
 $NAME     = 'Net';
 $DISTNAME = "libnet";
-$VERSION  = "1.22";
+$VERSION  = "1.22_01";
 
 BEGIN { require 5.002 }
 
@@ -98,6 +98,16 @@ WriteMakefile(
                 IO::Socket => 1.05
               },
   dist => { DIST_DEFAULT => 'mydist', },
+  (eval { ExtUtils::MakeMaker->VERSION(6.21) } ? (LICENSE => 'perl') : ()),
+  ( eval { ExtUtils::MakeMaker->VERSION(6.46) } ? (
+      META_MERGE => {
+        resources => {    ##
+          repository => 'http://github.com/gbarr/perl-libnet',
+        },
+      }
+      )
+    : ()
+  ),
   @ppd,
 );