Checking in changes prior to tagging of version 1.010. Changelog diff is: v1.010
Devin Austin [Thu, 14 May 2009 08:25:45 +0000 (08:25 +0000)]
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

Changes
lib/Catalyst/Authentication/Credential/HTTP.pm
t/live_app_digest.t

diff --git a/Changes b/Changes
index 60b0904..a0a8924 100644 (file)
--- a/Changes
+++ b/Changes
@@ -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
index dc43280..fa7c935 100644 (file)
@@ -20,7 +20,7 @@ __PACKAGE__->mk_accessors(qw/
     use_uri_for
 /);
 
-our $VERSION = '1.009';
+our $VERSION = '1.010';
 
 sub new {
     my ($class, $config, $app, $realm) = @_;
@@ -635,6 +635,8 @@ Patches contributed by:
 
 =item Peter Corlett
 
+=item Devin Austin (dhoss) C<dhoss@cpan.org>
+
 =back
 
 =head1 SEE ALSO
index 95e9c3f..50f2247 100644 (file)
@@ -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 }