r76486 - in /branches/upstream/libtest-most-perl/current: Build.PL Changes META.yml Makefile.PL lib/Test/Most.pm lib/Test/Most/Exception.pm

mxey-guest at users.alioth.debian.org mxey-guest at users.alioth.debian.org
Fri Jun 24 18:53:45 UTC 2011


Author: mxey-guest
Date: Fri Jun 24 18:53:36 2011
New Revision: 76486

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=76486
Log:
[svn-upgrade] new version libtest-most-perl (0.24)

Modified:
    branches/upstream/libtest-most-perl/current/Build.PL
    branches/upstream/libtest-most-perl/current/Changes
    branches/upstream/libtest-most-perl/current/META.yml
    branches/upstream/libtest-most-perl/current/Makefile.PL
    branches/upstream/libtest-most-perl/current/lib/Test/Most.pm
    branches/upstream/libtest-most-perl/current/lib/Test/Most/Exception.pm

Modified: branches/upstream/libtest-most-perl/current/Build.PL
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libtest-most-perl/current/Build.PL?rev=76486&op=diff
==============================================================================
--- branches/upstream/libtest-most-perl/current/Build.PL (original)
+++ branches/upstream/libtest-most-perl/current/Build.PL Fri Jun 24 18:53:36 2011
@@ -10,11 +10,11 @@
     requires          => {
         'Exception::Class'  => '1.14',
         'Test::More'        => '0.88',
-        'Test::Exception'   => '0.29',
-        'Test::Differences' => '0.500',
+        'Test::Exception'   => '0.31',
+        'Test::Differences' => '0.61',
         'Test::Deep'        => '0.106',
-        'Test::Harness'     => '3.07',
-        'Test::Warn'        => '0.11',
+        'Test::Harness'     => '3.21',
+        'Test::Warn'        => '0.23',
         'perl'              => '5.006',
     },
     meta_merge =>

Modified: branches/upstream/libtest-most-perl/current/Changes
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libtest-most-perl/current/Changes?rev=76486&op=diff
==============================================================================
--- branches/upstream/libtest-most-perl/current/Changes (original)
+++ branches/upstream/libtest-most-perl/current/Changes Fri Jun 24 18:53:36 2011
@@ -1,4 +1,8 @@
 Revision history for Test::Most
+
+0.24    2011-06-18
+        - Update dependencies to pick up multiple bug fixes, new behaviours,
+          in various Test:: libraries.
 
 0.23    2010-09-08
         - added "Excluding Test Symbols" feature (RT#61146, Karen Etheridge).

Modified: branches/upstream/libtest-most-perl/current/META.yml
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libtest-most-perl/current/META.yml?rev=76486&op=diff
==============================================================================
--- branches/upstream/libtest-most-perl/current/META.yml (original)
+++ branches/upstream/libtest-most-perl/current/META.yml Fri Jun 24 18:53:36 2011
@@ -13,22 +13,22 @@
 provides:
   Test::Most:
     file: lib/Test/Most.pm
-    version: 0.23
+    version: 0.24
   Test::Most::Exception:
     file: lib/Test/Most/Exception.pm
-    version: 0.23
+    version: 0.24
 recommends:
   Data::Dumper::Names: 0.03
 requires:
   Exception::Class: 1.14
   Test::Deep: 0.106
-  Test::Differences: 0.500
-  Test::Exception: 0.29
-  Test::Harness: 3.07
+  Test::Differences: 0.61
+  Test::Exception: 0.31
+  Test::Harness: 3.21
   Test::More: 0.88
-  Test::Warn: 0.11
+  Test::Warn: 0.23
   perl: 5.006
 resources:
   license: http://dev.perl.org/licenses/
   repository: http://github.com/Ovid/test--most
-version: 0.23
+version: 0.24

Modified: branches/upstream/libtest-most-perl/current/Makefile.PL
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libtest-most-perl/current/Makefile.PL?rev=76486&op=diff
==============================================================================
--- branches/upstream/libtest-most-perl/current/Makefile.PL (original)
+++ branches/upstream/libtest-most-perl/current/Makefile.PL Fri Jun 24 18:53:36 2011
@@ -3,19 +3,19 @@
 use ExtUtils::MakeMaker;
 WriteMakefile
 (
-          'NAME' => 'Test::Most',
-          'VERSION_FROM' => 'lib/Test/Most.pm',
-          'PREREQ_PM' => {
-                           'Exception::Class' => '1.14',
-                           'Test::Deep' => '0.106',
-                           'Test::Differences' => '0.500',
-                           'Test::Exception' => '0.29',
-                           'Test::Harness' => '3.07',
-                           'Test::More' => '0.88',
-                           'Test::Warn' => '0.11'
-                         },
-          'INSTALLDIRS' => 'site',
-          'EXE_FILES' => [],
-          'PL_FILES' => {}
-        )
+  'PL_FILES' => {},
+  'INSTALLDIRS' => 'site',
+  'NAME' => 'Test::Most',
+  'EXE_FILES' => [],
+  'VERSION_FROM' => 'lib/Test/Most.pm',
+  'PREREQ_PM' => {
+                   'Test::Harness' => '3.21',
+                   'Test::Exception' => '0.31',
+                   'Exception::Class' => '1.14',
+                   'Test::More' => '0.88',
+                   'Test::Differences' => '0.61',
+                   'Test::Warn' => '0.23',
+                   'Test::Deep' => '0.106'
+                 }
+)
 ;

Modified: branches/upstream/libtest-most-perl/current/lib/Test/Most.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libtest-most-perl/current/lib/Test/Most.pm?rev=76486&op=diff
==============================================================================
--- branches/upstream/libtest-most-perl/current/lib/Test/Most.pm (original)
+++ branches/upstream/libtest-most-perl/current/lib/Test/Most.pm Fri Jun 24 18:53:36 2011
@@ -30,11 +30,11 @@
 
 =head1 VERSION
 
-Version 0.22
+Version 0.24
 
 =cut
 
-our $VERSION = '0.23';
+our $VERSION = '0.24';
 $VERSION = eval $VERSION;
 
 =head1 SYNOPSIS

Modified: branches/upstream/libtest-most-perl/current/lib/Test/Most/Exception.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libtest-most-perl/current/lib/Test/Most/Exception.pm?rev=76486&op=diff
==============================================================================
--- branches/upstream/libtest-most-perl/current/lib/Test/Most/Exception.pm (original)
+++ branches/upstream/libtest-most-perl/current/lib/Test/Most/Exception.pm Fri Jun 24 18:53:36 2011
@@ -12,11 +12,11 @@
 
 =head1 VERSION
 
-Version 0.22
+Version 0.24
 
 =cut
 
-our $VERSION = '0.23';
+our $VERSION = '0.24';
 $VERSION = eval $VERSION;
 
 =head1 SYNOPSIS




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