[Catalyst-commits] r10151 - in Catalyst-Authentication-Credential-HTTP/1.000/trunk: . lib/Catalyst/Authentication/Credential t

dhoss at dev.catalyst.perl.org dhoss at dev.catalyst.perl.org
Thu May 14 08:25:45 GMT 2009


Author: dhoss
Date: 2009-05-14 08:25:45 +0000 (Thu, 14 May 2009)
New Revision: 10151

Modified:
   Catalyst-Authentication-Credential-HTTP/1.000/trunk/Changes
   Catalyst-Authentication-Credential-HTTP/1.000/trunk/lib/Catalyst/Authentication/Credential/HTTP.pm
   Catalyst-Authentication-Credential-HTTP/1.000/trunk/t/live_app_digest.t
Log:
Checking in changes prior to tagging of version 1.010.  Changelog diff is:

Index: Changes
===================================================================
--- Changes	(revision 10150)
+++ Changes	(working copy)
@@ -1,3 +1,8 @@
+
+1.010 2009-05-14
+   - Moved tests out to t/lib/ (dhoss)
+
+
    - Add debug when a user is found, but passwords don't match (abraxxa)
 
 1.009  2009-01-04


Modified: Catalyst-Authentication-Credential-HTTP/1.000/trunk/Changes
===================================================================
--- Catalyst-Authentication-Credential-HTTP/1.000/trunk/Changes	2009-05-14 08:04:26 UTC (rev 10150)
+++ Catalyst-Authentication-Credential-HTTP/1.000/trunk/Changes	2009-05-14 08:25:45 UTC (rev 10151)
@@ -1,3 +1,8 @@
+
+1.010 2009-05-14
+   - Moved tests out to t/lib/ (dhoss)
+
+
    - Add debug when a user is found, but passwords don't match (abraxxa)
 
 1.009  2009-01-04

Modified: Catalyst-Authentication-Credential-HTTP/1.000/trunk/lib/Catalyst/Authentication/Credential/HTTP.pm
===================================================================
--- Catalyst-Authentication-Credential-HTTP/1.000/trunk/lib/Catalyst/Authentication/Credential/HTTP.pm	2009-05-14 08:04:26 UTC (rev 10150)
+++ Catalyst-Authentication-Credential-HTTP/1.000/trunk/lib/Catalyst/Authentication/Credential/HTTP.pm	2009-05-14 08:25:45 UTC (rev 10151)
@@ -20,7 +20,7 @@
     use_uri_for
 /);
 
-our $VERSION = '1.009';
+our $VERSION = '1.010';
 
 sub new {
     my ($class, $config, $app, $realm) = @_;
@@ -635,6 +635,8 @@
 
 =item Peter Corlett
 
+=item Devin Austin (dhoss) C<dhoss at cpan.org>
+
 =back
 
 =head1 SEE ALSO

Modified: Catalyst-Authentication-Credential-HTTP/1.000/trunk/t/live_app_digest.t
===================================================================
--- Catalyst-Authentication-Credential-HTTP/1.000/trunk/t/live_app_digest.t	2009-05-14 08:04:26 UTC (rev 10150)
+++ Catalyst-Authentication-Credential-HTTP/1.000/trunk/t/live_app_digest.t	2009-05-14 08:25:45 UTC (rev 10151)
@@ -1,6 +1,8 @@
 #!/usr/bin/perl
 use strict;
 use warnings;
+use FindBin qw/$Bin/;
+use lib "$Bin/lib";
 use Test::More;
 BEGIN {
     eval { require Test::WWW::Mechanize::Catalyst }




More information about the Catalyst-commits mailing list