r7743 - in /branches/upstream/libemail-send-perl/current: Changes META.yml lib/Email/Send.pm t/email-send.t

dmn at users.alioth.debian.org dmn at users.alioth.debian.org
Wed Sep 19 07:03:12 UTC 2007


Author: dmn
Date: Wed Sep 19 07:03:12 2007
New Revision: 7743

URL: http://svn.debian.org/wsvn/?sc=1&rev=7743
Log:
[svn-upgrade] Integrating new upstream version, libemail-send-perl (2.190)

Modified:
    branches/upstream/libemail-send-perl/current/Changes
    branches/upstream/libemail-send-perl/current/META.yml
    branches/upstream/libemail-send-perl/current/lib/Email/Send.pm
    branches/upstream/libemail-send-perl/current/t/email-send.t

Modified: branches/upstream/libemail-send-perl/current/Changes
URL: http://svn.debian.org/wsvn/branches/upstream/libemail-send-perl/current/Changes?rev=7743&op=diff
==============================================================================
--- branches/upstream/libemail-send-perl/current/Changes (original)
+++ branches/upstream/libemail-send-perl/current/Changes Wed Sep 19 07:03:12 2007
@@ -1,3 +1,6 @@
+2.190     2007-09-18
+          fix bugs exposed by new Test::More
+
 2.189     2007-09-17
           fix bugs exposed by new Test::More
 

Modified: branches/upstream/libemail-send-perl/current/META.yml
URL: http://svn.debian.org/wsvn/branches/upstream/libemail-send-perl/current/META.yml?rev=7743&op=diff
==============================================================================
--- branches/upstream/libemail-send-perl/current/META.yml (original)
+++ branches/upstream/libemail-send-perl/current/META.yml Wed Sep 19 07:03:12 2007
@@ -1,6 +1,6 @@
 --- #YAML:1.0
 name:                Email-Send
-version:             2.189
+version:             2.190
 abstract:            Simply Sending Email
 license:             perl
 generated_by:        ExtUtils::MakeMaker version 6.32

Modified: branches/upstream/libemail-send-perl/current/lib/Email/Send.pm
URL: http://svn.debian.org/wsvn/branches/upstream/libemail-send-perl/current/lib/Email/Send.pm?rev=7743&op=diff
==============================================================================
--- branches/upstream/libemail-send-perl/current/lib/Email/Send.pm (original)
+++ branches/upstream/libemail-send-perl/current/lib/Email/Send.pm Wed Sep 19 07:03:12 2007
@@ -2,7 +2,7 @@
 use strict;
 
 use vars qw[$VERSION];
-$VERSION   = '2.189';
+$VERSION   = '2.190';
 
 use Email::Simple;
 use Module::Pluggable search_path => 'Email::Send';

Modified: branches/upstream/libemail-send-perl/current/t/email-send.t
URL: http://svn.debian.org/wsvn/branches/upstream/libemail-send-perl/current/t/email-send.t?rev=7743&op=diff
==============================================================================
--- branches/upstream/libemail-send-perl/current/t/email-send.t (original)
+++ branches/upstream/libemail-send-perl/current/t/email-send.t Wed Sep 19 07:03:12 2007
@@ -1,4 +1,4 @@
-use Test::More tests => 20;
+use Test::More tests => 18;
 use strict;
 $^W = 1;
 
@@ -6,10 +6,10 @@
 can_ok 'Email::Send', 'plugins', 'mailer_available', 'mailer',
                       'mailer_args', 'message_modifier', 'send', 'all_mailers';
 use_ok $_ 
-  for grep { /IO|NNTP|SMTP|Qmail|Sendmail/ } Email::Send->plugins;
+  for grep { /NNTP|SMTP|Qmail|Sendmail/ } Email::Send->plugins;
 
 can_ok $_, 'is_available', 'send'
-  for grep { /IO|NNTP|SMTP|Qmail|Sendmail/ } Email::Send->plugins;
+  for grep { /NNTP|SMTP|Qmail|Sendmail/ } Email::Send->plugins;
 
 my $mailer = Email::Send->new();
 isa_ok $mailer, 'Email::Send';




More information about the Pkg-perl-cvs-commits mailing list